How to edit content in a cell - how can u set a shortcut to do that

so i have been left clicking to change the content. how do you do that on the keyboard? i found a list of shortcuts under some menu in numbers, but i couldnt set the shortcuts myself
thanks alot, this will save me soooo much time

There is a partial solution to this that will allow you to enter the formula editor for any selected cell from the keyboard:
1. In System Preferences, select the "Keyboard Shortcuts" section of the Keyboard & Mouse" preference.
2. Click the plus box button below the list to add a shortcut.
3. In the drop down sheet, from the "Application:" popup that defaults to "All Applications," choose Numbers if it is listed (it probably will not be) or if not, scroll to the end of the list & select "Others..." & navigate to Numbers in the Application folder & choose it. (The basic idea is to create an application-specific keyboard shortcut for Numbers.)
4. In the "Menu Title:" text box type "Formula Editor" (without the quotes)
5. Select the "Keyboard Shortcut:" box & press the keys for the desired keyboard shortcut. This can be anything that includes one or more modifier keys (Command, Control, Option, etc.), but to prevent conflicts, choose something not already in use & not something that would be a character you would want to enter in a cell.)
6. Click the "Add" button, then scroll down in the shortcuts list window to the "Application Keyboard Shortcuts" section, click the triangle to show them, & check that the shortcut is listed, & that not yellow warning triangle appears, signifying a shortcut conflict.
7. If Numbers is running, quit & relaunch it so that the shortcut will take effect.
As noted above, this only helps with cells that have, or will have, formulas in them. It works exactly like the menu command Insert>Function>Formula Editor: If the cell does not currently have a formula but some literal value, the formula popup will not include it, & if you then click the "Accept" button, type a return, tab, etc., the literal value will be replaced. If the cell already has a formula, the formula popup will not replace it but instead will move the insertion point to after the last character in the existing formula.
The same technique will work for adding keyboard shortcuts to any other Numbers menu item.
Had there been an "Enter cell editor" (or something like that) menu command, presumably this would have allowed a complete solution, but there doesn't even seem to be an official name for doing that -- the documentation refers to it only procedurally, as in 'click again' or the like. Obviously, there is no need for the menu item other than for this, so a complete solution will have to wait for a new version of the app.

Similar Messages

  • I 'm using ipad 2 and am using iwork pages.  how can i set up iwork pages so that a page scroll left to right or right to left instead of just scrolling up?

    I am using ipad 2 and am using iwork paged.  how can i set up iwork pages so that a page will scroll left to right or right to left instead of just up?

    Here you are in a forum dedicated to Pages for OSX.
    Most of us don't use Pages for iOS.
    Better ask in the iWork for iOS forum :
    https://discussions.apple.com/community/app_store/iwork_for_ios
    Yvan KOENIG (VALLAURIS, France) lundi 18 juillet 2011 22:38:20
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How can I set up my imac so that I have access to other family members documents?

    How can I set my my imac so that I have access to other family members documents when I am logged on my side?

    Hello,
    I find Dropbox a great way of having access to my files on all Mac accounts, any PC on the web and my iOS device. 
    regards
    mrtotes

  • How can I set up my contacts so that I do not see all of them on ipad from iCloud?

    How can I set up my contacts so that I do not see all of them on ipad from iCloud? I don't need/want to view contact info for casual contacts on the ipad. (I.e. contacts entered so that I can identify a caller for ID/screening purposes)
    Also would like to limit email contacts from yahoo- no need to view emails for every "safe list" address.
    Thanks!

    Keyboard shortcut for FullScreen is   command + control + F
    For more on this:
    http://support.apple.com/kb/PH11941

  • How can i set up my macbook pro that the sent emails show up in the sent folder?

    How can i set up my macbook pro that the sent emails show up in the sent folder?

    look at the Preferences and open the "Mailbox Behavior"  maybe the sent mail is being stored on the server?
    I going to have this post moved to the "Mail" forum

  • How can I set or reset the page that is loaded when I open a new tab using Ctrl t ?? by

    I recently downloaded a program that has, as an undesired additional action, apprently setup Yahoo as the page that opens by default when I open a new tab using <Ctrl> <t> (or the <+> symbol on the tab bar). This is aggravating to me, particularly as I have not been able to find a way to stop it occurring.
    I expect that it is buried somewhere in my profile, but I also have not found a way to explore or edit the contents of my profile.
    There is a JScript script file called "user" in ...\profiles\4g4vpust.default that I suspect is associated with the behaviour, but renaming it achieved nothing.
    Prior to this, my new tabs used to open as blank pages, i.e. did not load any URL and I was happy with that. How can I get back to that state?

    Did it add the freeze net assistant add-on? That add-on is known to do this. If you have that add-on you can uninstall it Firefox should revert to the default behavior.
    If you do not have that add-on, another add-on will be causing this, you can use the procedure in the following link to identify what one - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • How can I set up a smart album that looks for keywords?

    Hi everyone,
    I'm in the middle of a rethink on my image management and am wanting to setup smart albums that will search for and display images that have a certain keyword. When I create a new smart album to do this, I'm only given the ability to choose to search for rating and calendar criteria; the keywords and import session options are greyed out. My images have keywords assigned, so where do I go from here?
    Thanks,
    Andrew

    OK, a step forward. It seems that if I create a smart album it will only look for keywords in the project that it is contained in.
    Perhaps someone can help me then: I keep a collection of albums for each person that is featured in a photograph. These albums are stored outside of the projects that the images are stored in so I can have a collection of images that show person X from all the different shoots.
    What I want to do now is keyword each image with the person's name (as a keyword) and then have a Smart album that will pick out all of their photos from my entire library, not just a certain project. How can I do this?

  • How can i set the number of results that can be displayed on the page

    hello im just wondering how i can set the numebr of results that can be dispaleyd on the jsp, when the there are more than 5 results i want the suer to press more
    how is this odne could anyone send me a example code?
    and also how can i get results from the query displayed as select list options, so that when they press one of teh results it goes to correspnding page
    Thank you

    Hi,
    I assume that you have the connection to the DB.
    You can try this code.
    Statement stmt = con.createStatement();
    String sql = "<some sql code for selecting>";
    ResultSet rs = stmt.executeQuery(sql);
    rs.last();
    int count = rs.getRow(); // this is the number that shows how many numbers you have after select query
    rs.first(); //we moved cursor again to the begining of the results.
    if (count > 5) {
    for (int i=0;i<5;i++) {
      //as an example
      rs.getString(0);
      rs.getString(1);
      rs.getString(2);
    out.print("<a href='morePage.jsp'>More</a>");
    else {
    for (int i=0;i<count;i++){
      //as an example
      rs.getString(0);
      rs.getString(1);
      rs.getString(2);
    rs.close();
    stmt.close();I hope this would help you.
    If you have problems let me know..
    Ismail TURK

  • How can I set a "Read Receipt" so that I know my emails have been opened?

    I have Mail 2.1 and have gone through all the menus and cannot figure out how or what I need to do to get a read receipt email to find out if the messages I have sent to certain recipients have been opened. Does anyone know how to do this? Thanks so much!

    The Mail.app does not include this feature nor does it provide a read receipt without your knowledge when requested by the sender of a message. There is a Terminal command you can enter to request a read receipt for every sent message but not by individual message.
    Keep in mind, if the recipient's email client supports providing a read receipt when requested by the sender of a message, the recipient also has the ability to deny providing a read receipt for messages read if requested by the sender.
    I use Windows Outlook at work and I don't request a read receipt for sent messages nor do I provide it when requested by the sender of a message.

  • How can I set the Reminders app so that it does not shown my AppleID password as the header for my lists on my desktop or laptop screen?!?

    My Reminders app which I sync with iPad shows my AppleID password as a heading for my lists when I have it open on my screen of my laptop or desktop. The iPad does not reveal the password the same way. Desktop is not so worrisome, but I don't understand why this would happen and is especially weird if I have the app open in public on my laptop.  Is this a default? What do I do to make sure the list does not show by password?  I understand that sharing the Reminders via the iCloud may cause a need to show what Reminder lists are being shared between a device and laptop, but why not a user name instead of the PASSWORD!!!?

    Where in the Reminder's window are you seeing the password.  Here's what my Reminder's window looks like?
    That's Reminders V2.0 on 10.9.4.

  • HT201303 How can I set up iTunes billing so that I get billed ONCE per download session rather than for EACH download I purchase?

    It's annoying getting seven, eight, ten, twenty direct billings from my bank account when I'd prefer a single one per session. Maybe this isn't possible to do, but it never hurts to ask!

    Contact Apple through iTunes Store Support

  • How can you set up a "ring around" that us old timers used to do in the dark room for printing?

    I have a calibrated monitor. I have set up the proper profile for my epson 1400 printer using only epson ink. I am using PSE 5.0 and am perfectly happy with it.Working on Win Vista Business. I tried "soft proofing" in Quimage and was not happy with its result, so I want to go back to my tried and true technique I once used in my color darkroom, by using a window cut in a large piece of black board, and moving it from R to L changing the color balance and or the exposure to make a good print.
    Help anyone?
    Regards,
    Millard

    Thanks for the reply. Let me try to clarify what I am trying to do:Rather than waste many sheets of 13X19 sheets of paper "tweaking" the picture, i would like to set up 5 or more tweaks on one sheet of paper, so that I will only waste one sheet, rather than 5 sheets.
    Regards,
    Millard

  • How can I set the number of day that FF remembers a visited site?

    Using FF 8, a visited site link turns color to show it has been visited. I would like to have that color go back to normal after 14 days. In other words, I want FF to remember that I visited a site by turning the link a different color for only 14 days. Right now it seems to last forever. The link never changes back to normal, so I can't easily tell when I was last on the site.
    I do use sync.
    I looked through the about:config, but don't seem to be able to find a pref that will do this.

    You can do it manually if you like with code in the Error Console.
    Copy and paste the code in the Code field in the Error Console and click the Evaluate button.
    *Firefox/Tools > Web Development > Error Console (Shift+CtrL+J)
    See http://kb.mozillazine.org/User:Dickvl/JavaScript_Error_Console#Expire_History_By_Days

  • How can I set up lightroom 5 in my macbook, so that it becomes my default editing program, so that it starts up when I insert my sd card into the mac

    How can I set up lightroom 5, so that it becomes my main / default editing program & that when I insert my sd card into the mac lightroom starts instead of iPhoto .

    Thanks.  Im new to apple, which preference?
    Sent from my iPhone

  • HT201303 How do I set up my iPhone so that I have to enter my password each time I need to access my apple account? Previously my account name was always stored and I only had to enter my password each time but now it never asks for a password

    How can I set up my 4s so that when I need to access my apple account to either download an app, update an app or buy something then I need to just put in my password?  This is how my 3s worked but the 4 s seems to have stored all my details so I don't need to log in. My young son sometimes plays games and I dont want him to accidentally buy stuff. If I log out then each time I need to go back in I have to put in all my account info. Not just my password.
    Any ideas?

    Depending upon what version of iOS that you have on it then you might have a Settings > General > Restrictions > Require Password setting on it - if you do then set it to 'Immediately'

Maybe you are looking for

  • Invoking http post from BPEL is not passing parameters

    Hi, I have a simple BPEL process where I am trying to send an xml string in a request parameter to a servlet. Servlet is pretty simple. It just prints the request parameters and returns. But problem is that I am not getting any request parameters whe

  • Help!! All Photos and videos gone

    I have an iphone 4 and recently, the speaker stopped working so I went to the shop and they told me to restore my phone to it's factory settings and then put everything back on again.  I backed up my phone on itunes on my computer but when I went to

  • Read data from E$ table and insert into staging table

    Hi all, I am a new to ODI. I want your help in understanding how to read data from an "E$" table and insert into a staging table. Scenario: Two columns in a flat file, employee id and employee name, needs to be loaded into a datastore EMP+. A check c

  • Help... my disks are not being recognized

    i wonder if anybody could help me... we have had our macbook pro for well over a year now, all of a sudden yesterday the laptop stopped recognizing any CD's or any disks of any kind. This is starting to become a problem, i would greatly appreciate an

  • How to explain that CCMS Agent doen't effect for system perfformance ?

    Hi All, My customer worries that installation of ccms agent in their production system will be effecting overall system performance. is that any explanation that i can use to explain that ccms agent doen't burden the production system because they ha