Is it possible to delete a template from numbers?

I need to delete a template from numbers and can't seem to find a way to do it? Anyone else have this problem?

I'll assume you're using Lion or maybe Mountain Lion. Numbers stores those you created & saved as templates in (your account) > Library > Application Support > iWork > Numbers > Templates > My Templates. The user's Library is hidden in Lion but it is easy to open. In Finder, hold down the Option key while clicking on the Go menu & your user Library will appear about halfway down the list.

Similar Messages

  • HT201812 In the past it was possible to delete songs/tones from iTunes but this no longer seems to be the case.  Is it possible to delete songs or tones if they are not duplicated - I just no longer want them in my library?

    In the past it was possible to delete songs/tones from iTunes but this no longer seems to be the case.  Is it possible to delete songs or tones if they are not duplicated - I just no longer want them in my library?

    Howdy SJHocking,
    It sounds like you want to know how to dele songs and ringtones from iTunes. Take a look at the article linked below, it’ll walk you through the process of deleting content from iTunes.
    Delete songs, playlists, or other items - iTunes Help
    If you have iTunes Match enabled, take a look at this article which will walk you through the process of deleting songs from iCloud.
    iTunes Store: How to delete songs from iCloud - Apple Support
    Cheers,
    -Jason

  • Is it possible to delete a relationship from the BP ?

    Hello experts,
    I'd would like to replace a function partner SH (having the same number as the DO) by another  from R3 to CRM5.
    At the begining i have in R3 this partner
    AG 3901007
    RE 3901007
    RG 3901007
    WE 3901007
    In R3 by the transaction VD02, I replace the partner SH by another
    After the modify i have in R3.
    AG 3901007
    RE 3901007
    RG 3901007
    WE 5000000
    When the replication is done in CRM using BDOC, i can see, by the transaction BP
    the new ship to party partner(5000000) .
    The trouble is :
    When customer access to ISA (standard version) to order product, he can select the partner 3901007 as shipping adress.
    By ISA, he should have the partner 5000000 only.
    Is it standard or is it a sap trouble ?
    Is it possible to delete a relationship from the BP ?
    I don't want to delete the BP partner, i just want to delete the relationship when then BDOC arrive in CRM.
    i have found the oss note 596334 497146 757955 too but it doesn't bring me a solution.
    Best regards
    Christophe

    Hello
    When you delete a Partner Function in R/3 the corresponding relationshipdoesn't get deleted in CRM. This is standard SAP behavior and not a
    bug. Reason for this behavior has been explained in Note 490454.
    You can change this behavior by implementing Note 497146. Also check
    the note 682427 which will help you in clearing old data.

  • How do I delete my templates from Word 2011 in OSX 10.8.5

    How do I delete my templates from Word 2011 in OSX 10.8.5?  I cannot find user/library in the finder.  Please help.

    They will be in the MS Templates folder located in the MS Office folder in your Applications folder.
    Exposing the /Home/Library/ Folder
    Pick one of the following methods:
    A. This method will make the folder visible permanently. Open the Terminal application in your Utilities folder and paste the following at the command prompt:
    chflags nohidden ~/Library
    Press RETURN.
    B. Click on the Desktop, press the OPTION (⌥) button, select Library from the Finder's Go menu.
    C. Select Go To Folder from the Finder's Go menu. Paste the following in the path field:
    ~/Library
    Press the Go button.

  • Is it possible to delete iCloud drive from ios8 device

    I updated my iPad to IOS8,  not thinking I said yes to iCloud drive.  I use my iPad to type minutes at a meeting and then complete them on my iMac.  Since I do not have Yosemite yet, if I type on my iPad will I not be able to access the document on my Mac?  I have all my completed documents saved on my mac but will any new ones be lost in space if they are started on the iPad?    Is it possible to delete iCloud drive from the iPad.  I know I can turn it off, but that won't help.  Maybe I will be lucky and Yosemite will come out before my next meeting.  It looks like I could probably email a copy from my iPad to my iMac as a pages doc. and then be able to open it in pages.
    Thanks
    Judy

    Hi David:
    Thanks.  I see that I could open in icloud pages and I guess work on it there.  I have never worked that way before.  Can you save it back to the mac?  or just to  iCloud?  And I have to send out copies to board members which, I guess, can be done there.  Thanks for your input.  I feel so stupid,;  I even saw the "small print".  Oh well.
    Judy

  • Is it possible to delete data selectively from Business content cubes

    Dear Experts,
             Requesting you to help me out to know, is it possible to delete data selectively from Business content cubes.
    When I'm trying to delete selectively from Business content cubes, the background job gets cancelled with ST22 logs stating
    A RAISE statement in the program "SAPLRSDRD" raised the exception  condition "X_MESSAGE".                                                                               
    Since the exception was not intercepted by a superior program, processing was terminated.  
    and i tried  with few more Technical content cubes but the same thing happens.
    Pls let me know how to selectively delete data from Business content cubes if it's possible?.
    Thanks in advance for your favorable assistance.
    Regards,
    Ramesh-Kumar.

    Hi Ramesh,
    Follow below steps for selective deletion:
    1.     Transaction code: Use the Transaction code DELETE_FACTS.
    2.     Generate selective deletion program:
    A report program will be generated of the given name, here .
    3.     Selection screen:
    Take the deletion program u201CZDEL_EPBGu201D to the transaction code SE38 to see/execute the program.
    After executing it will take you to a selection screen:
    As we need to carry out deletion selective on Calendar week, we need to get the screen field for the field Calendar week. For this, click on the Calendar week field and press F1.
    Click on the technical information button (marked in red box above) you will get below screen:
         ABAP program to carry out the Calendar week calculation
    Problem scenario: As stated earlier the requirement is to delete the data from the cube based on the calendar week. Thus a code must be developed such that the number of weeks should be taken as input and corresponding calendar week should be determined. This calendar week should be then passed to the deletion program in order to carry out the data deletion from the InfoCube.
         Transaction code: Use T-code SE38 in order to create a program.
    Logic: Suppose we need to delete the data older than 100 weeks.
    a.     Get the number of weeks and system date in variables and calculate the total number of days :
    lv_week = 100.      *number of weeks      
    lv_dte = sy-datum.     *system date
    v_totaldays = lv_week * 7.      *total days
    b.     Get the corresponding calendar day from the total days. This is obtained by simply subtracting the total no. of days from the system date.
    lv_calday = lv_dte - v_totaldays. *corresponding calday.     
    c.     Now in order to get the calendar week corresponding to the calculated calendar day we must call a function module 'DATE_TO_PERIOD_CONVERT'. This function module takes input as Calendar day and Fiscal year variant and returns the appropriate fiscal period.
    Get the sales week time elements
      call function 'DATE_TO_PERIOD_CONVERT'
        exporting
          i_date                      = lv_calday
          i_periv                     = lc_sales
        importing
          e_buper                     = lv_period
          e_gjahr                     = lv_year
        exceptions
          input_false                 = 1
          t009_notfound               = 2
          t009b_notfound              = 3.
      if sy-subrc = 0.
        ls_time-calweek(4)      = lv_year.
        ls_time-calweek+4(2)    = lv_period.
      endif.
    v_week = ls_boots_time-calweek.
    Note: We can pass the fiscal year variant which can be obtained from the table T009B.For e.g. here fiscal year variant lc_sales = Z2. LS_TIME will be any table with suitable time units.
    d.     Now we have obtained the required calendar week in the v_week variable. This calendar week is the week till which we need to keep the data. And older data than this week will be deleted. This deletion will be done by the deletion program
    Submitting the Data deletion program for ZEPBGC01 and key field
    SUBMIT ZDEL_EPBG WITH C039 LT v_week.
              Here the calendar week value is submitted to the deletion program ZDEL_EPBG with the screen field of calendar week.
    Hope ... this will  help you..
    Thanks,
    Jitendra

  • Is it possible to delete a folder from my Time Machine backups?

    Hi. I have Time Machine running on my office computer. It has backed up all my data since September. Problem is that I need to delete a folder from the backups that contains personal work. Is it possible to delete 1 folder from all the backups? If not, where are the instructions for erasing the Time Machine hard drive (in my case, it's Time Capsule) and starting from scratch?
    Thanks!

    Emily Kessler wrote:
    Hi. I have Time Machine running on my office computer. It has backed up all my data since September. Problem is that I need to delete a folder from the backups that contains personal work. Is it possible to delete 1 folder from all the backups? If not, where are the instructions for erasing the Time Machine hard drive (in my case, it's Time Capsule) and starting from scratch?
    Thanks!
    Yes, but never do it directly with Finder or any tool other than TM itself.
    Here's how:
    Run TM and access the folder you are interested in with the Finder that pops up when you run TM
    When you find the folder you wish to remove select it and then click the small gear in the TM Finder menu and have TM remove that folder and all corresponding folders.
    Again, never to into the TM backup directly or you can corrupt the database and make it useless.

  • Is it possible to delete a song from 5th generation Ipod?

    Hi All
    Is it possible to delete a song from 5th generation Ipod, if so, how can this be done?

    Connect your iPod Nano to your computer.  Go into iTunes & click on Music or your playlist under "Devices." 
    Delete the songs from iTunes.  Once deleting is done, eject your iPod Nano.
    Check out the following thread:  http://discussions.apple.com/thread.jspa?threadID=2276586

  • Is It Possible To Delete Certain Clips From An Archive?

    After successfully completing an Archive, I noticed there are certain clips that I will never use and would like to get rid of them.  I realize that i don't have to import them into my Events  but don't see a reason to have them taking up HD space.  The Archive was built from a mini DV tape cassette which means they are already stored there.  Is it possible to delete certain clips from an Archive?  If so, can't figure out how to go about it.  Any help would be greatly appreciated. 

    I would try this on a small archive first and on a duplicate, just to make sure you don't damage the entire archive by using this technique.
    You can open an archive by right clicking on the archive icon and Show Package Contents. You should get a regular finder file structure. Find the files you want to discard, select them and Move to Trash.  That should be all there is to it.  I don't see where this should cause any problems, you should be able to import the files into FCPX without any problems (but** I have not tried this for myself — that's why I recommend trying this out on a duplicate archive first.)

  • Is it possible to delete a template I created in the template chooser

    Is it possible to delete a template I created in the template chooser?

    I figured it out via the Finder. Thanks anyway
    1.
    My account (name of my computer)
    2.
    Library
    3.
    Application Support
    4.
    iWork
    5.
    Numbers or Pages
    6.
    Template
    7.
    My Templates
    8.
    Highlight which one (s) to delete, use delete button or drag to desk top.

  • Is it possible to print a note from numbers spreadsheet

    Hi I hope someone can help. Is it possible to print a note from numbers spreadsheet. Or is there any way I can type a ticket that I can print but that will automatically transfer the data to a spreadsheet in numbers?

    How about the opposite direction. You have a table with a "key" field, like a ticket #.
    You make another sheet that you type in the ticket number and it pulls up the proper data in the proper location for you to print. Just a print tempalte that fills out for the ticket already entered into the data table.
    Jason

  • Is it possible to take a chart from numbers and put it into keynote instead of remaking it in keynote?

    Is it possible to take a chart from numbers and put it into keynote instead of remaking it in keynote?

    Take a screenshot of the chart and use that in Keynote, if you can't find another way.

  • Deleting Templates from Numbers

    Is it possible to edit or delete templates from My Template Chooser in Numbers?

    You will navigate to a folder where your custom templates are kept, select and Delete the template.
    In Finder, click on the Go menu (top line). While the Go menu items are displayed, press the Option/Alt key. This will reveal a normally hidden choice, "Library", about half way down the list. Choose this item.
    A Finder window will open and you will then choose this path:
    Application Support > iWork > Numbers > Templates > My Templates.
    Identify your template and delete it (Move to Trash).
    Jerry

  • Is it possible to Delete BP's from production system

    Hi All,
    Is it possible to delete old BP numbers from production system?
    if yes please let me know the procedure and impact on the system.
    if no please let me know ,how to prevent user from entering old BP number into order.
    Thanks in advance for your help.
    Regards,
    Shaik

    Hi Shaik,
    You can delete the BP using transaction BUPA_DEL.
    Just enter the number of the BP you want to delete and then execute.
    Make sure that all the checkboxes on the selecton screen are clear.
    In case the BP has dependencies and deletion is not alowed, you will get an error message informing you of the same.
    Best Regards,
    Rishu.

  • How to delete a template from pages

    Hi
    Does anyone know how to delete a template fom pages?

    Pages stores those you created & saved as templates in (your account) > Library > Application Support > iWork > Pages > Templates > My Templates. The user's Library is hidden in Lion & Mountain Lion but it is easy to open. In Finder, hold down the Option key while clicking on the Go menu & your user Library will appear about halfway down the list. Or you can choose Go to Folder from Go menu in Finder & paste this line in the box:
    ~/Library/Application Support/iWork/Numbers/Templates/My Templates/

Maybe you are looking for

  • Want to get a new Macbook and import audio through USB? Look here.

    FWIW, as I was reading many of these posts, a lot of folks are suggesting that you NEED firewire for audio interfaces. Here is a link to twenty (USB) audio interfaces and that is just at one site. I myself record hi end audio for film using a M-Audio

  • This copy of Windows is not genuine Build 7601

            Some time ago, malware damaged my windows 7 professional by making it not genuine(I keep getting those annoying pop-ups). I've discussed this subject in length on the windows support forumn, but still haven't fixed the problem. My PC came ins

  • Install Error in WS 2008 R2

    Attempting to install CF10 on Windows Server 2008 R2 Standard 64bit SP1. I've attempted twice and received an error near the end of the installation process both times: "ExecuteAppCmd.exe has stopped working." After dismissing the error, the installa

  • HP 1910-24g and link aggregation

    Hi! I need to know if two this switches are capable of link aggregation. I have an esxi server, and i want to configure it for fault tollerance and load balance with nic teaming, connect one nic to every switch, so that if a switch fail the server co

  • HT3678 cant get my MAC to play videos taken from my phone or my new DSL camera

    Ive taken videos from both my iphone and my new dsl camera and cannot play the movies on my MAC. Any suggestions?? thanks..