Creating formulas in Numbers - quick key to reference cells

Former Excel person, moving over to Numbers -- very simple question on how I can use keystrokes to reference cells when creating a formula, rather than typing in the cell or using the mouse. In Excel would just type "=", then could use the arrows keys to move around and go into the first cell for the formula, type "+", then arrow around to the second cell and hit Enter.

As Yvan has pointed out, Numbers offers an alternative to large spreadsheets, that being multiple tables & sheets. As you point out, moving around a large spreadsheet is not fast, even when using cursor keys (which I am assuming are the same thing as arrow keys, there being just the one set on my keyboard).
Assuming you can break your large spreadsheets down into smaller ones, you may find that navigation is remarkably quick because you can click on any table in any sheet to immediately jump to another one (even when creating cell or range references) rather than having to transverse large areas of a single spreadsheet one cell at a time.
If you are interested in exploring this approach, you may find my comments in the thread Generating values for grades useful as a description of how this can be applied when creating cell references in Numbers.
It may not be the right approach for your needs, but unless you know about it, you can't compare it to other approaches, right?

Similar Messages

  • Why iCloud only allows store documents created by Pages, Numbers or Key Note ? How can I "iCloud" documents created with Word Mac or Excel mac??

    Why iCloud only allows store documents created by Pages, Numbers or Key Note ? How can I "iCloud" documents created with Word Mac or Excel mac??

    Oscar66 wrote:
    Why iCloud only allows store documents created by Pages, Numbers or Key Note ? How can I "iCloud" documents created with Word Mac or Excel mac??
    iwork for ios accepts for upload and also happily opens all your Microsoft office files, from Office97 standard doc/xls/ppt to the 2011 versions of docx,xlsx,pptx and various other of these format extensions.
    Notice : the upload feature in www.icloud.com is only active if you in fact own these apps on your iPhone/Pad/pod. it is not a feature of iWork for the Mac ( iwork09 ) which itself is not icloud capable at all.

  • Creating formulas in Numbers

    I want to create a spreadsheet that divides time by intervals within a track. For example, I want the top row to display times and the first column to display distance by 200 meter intervals. Is there a formula for that?
    If a track runner wanted to run at a 6:00 pace, what would the time break down be for each 200 meter interval? What type of formula could I use for that. Of course 6:00 is easily divisible but not as much for me once we get into 6:13 pace, etc...

    Betsy,
    If the 6 minute pace is for a mile (I'm just guessing) then that defines how far a runner runs any fixed distance.
    Here is a way to do this:
    B5 contains the distance over which you want to get the check points and
    B6 contains the duration over which a runner needs to cover the distance (duration means enter as "6m 0s" for 6 minutes 0 seconds)
    row 1 contains checkpoints numbers 0 through 8
    B2=B1×$B$5÷MAX(1:1)
    this is shorthand for select cell B2 then type (or copy and paste from here) the formula:
    =B1×$B$5÷MAX(1:1)
    select cell B2, copy, select cells B2 thru J2, paste
    B3=B2÷($B$5÷DUR2SECONDS($B$6))
    select cell B2, copy
    select cells B2 thru J3, paste
    the results in row three are in seconds

  • How to create apple quick key to lock screen in 10.6.8 WITHOUT using screen saver or expose feature.

    Hello All,
    I frequently use my mac in an office that many of my co-workers have access to. I'd like to know of a quick way to lock my screen without putting it in sleep mode or using the screen saver/expose feature. I have the Lock Screen icon in my menu bar but i'd like to know how I can assign a quick key to quickly activate the "Lock Screen" function.
    Any suggestions?
    Thanks in advance to those who respond!

    See whether any of the several methods in this article is useful to you:
    http://www.macworld.com/article/49080/2006/01/lockscreen.html

  • Creating Formula colums

    Hi All,
    I want to create formula column in apex as in Oracle Forms.
    I would like to know how (which properties to be set or processes or any thing else) to use the formula and where.
    For example:
    Suppose I have two Text Items: As soon as value is entered in either of the two columns its sum should be displayed in a third Display only text Item.
    Hoping for a quick response.
    Thanks in Advance.
    Arif Khadas

    Thanks for your replies andy.
    Run the page and do View, Source from the menu (View, Page Source in FireFox). Search for id="P264_SAL", then id="P264_COMM" and then id="P264_TOTAL". I have found all this in the source code. I am copying it and making it bold for your reference. Is there any problem with it.
    <td colspan="1" rowspan="1" align="left"><input type="hidden" name="p_arg_names" value="6233313766736725" /><input type="text" name="p_t11" size="30" maxlength="2000" value="" id="P264_SAL" onChange="javascript:calculateTotal();" /></td></tr><tr><td nowrap="nowrap" align="right"><label for="P264_COMM"><a class="t13OptionalLabelwithHelp" href="javascript:popupFieldHelp('6234124848739895','4050738722309497','')" tabindex="999">Comm</a></label></td>
    <td colspan="1" rowspan="1" align="left"><input type="hidden" name="p_arg_names" value="6234124848739895" /><input type="text" name="p_t12" size="30" maxlength="2000" value="" *id="P264_COMM"* onChange="javascript:calculateTotal();" /></td></tr><tr><td nowrap="nowrap" align="right"><label for="P264_TOTAL"><a class="t13OptionalLabelwithHelp" href="javascript:popupFieldHelp('6234901084742553','4050738722309497','')" tabindex="999">Total</a></label></td>
    <td colspan="1" rowspan="1" align="left"><input type="hidden" name="p_arg_names" value="6234901084742553" /><input type="text" name="p_t13" size="30" maxlength="2000" value="" *id="P264_TOTAL"* /></td></tr>
    Also following are the initial part of the source where there is error on Line 17 char 2.
    <html lang="en-us" xmlns="http://www.w3.org/1999/xhtml" xmlns:htmldb="http://htmldb.oracle.com">
    <head>
    <script src="/i/javascript/htmldb_html_elements.js" type="text/javascript"></script>
    <script src="/i/javascript/htmldb_get.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    /*Global JS Variables*/
    var htmldb_Img_Dir = "/i/";
    //-->
    </script>
    <link rel="stylesheet" href="/i/css/core_V22.css" type="text/css" />
    <!--[if IE]><link rel="stylesheet" href="/i/css/core_ie_V22.css" type="text/css" /><![endif]-->
    <script type="text/javascript">
    function calculateTotal()
    var v1 = $v('P264_SAL');
    var v2 = $v('P264_COMM');
    $x('P264_TOTAL').value = parseFloat('0' + v1) + parseFloat('0' + v2);
    </script>
    Thanks once again.

  • Error in creating Formula Variable

    Hi All:
    I'm having problems in creating formula variable. Trying to create FV on a characteristic using replacement path with attribute value , but the wierd part is it's not giving me any attributes it's just blank. Any help would be appreciated....
    Thanks,
    Manasa.

    Right click on the FM, create -> Characteristic -> attribute value -> but the attribute are not showing up.  This happens if the attribute is of key figure type. I was able to do this in another system (ASIA DEV) but now trying in Europe Dev.

  • How to create Formula based value field in COPA

    Hi,
    I want to know how to create formula based  value field in COPA
    My Requirement is i want to collect some value in formula based value field and want to use in copa allocation cycle as a tracing
    factor.
    anybody give some light on the same topic or requirement ?
    Thanks
    Nilesh R

    The key figure you are creating in KE2K is not a value field, i.e. you can't post to it and you can't use it in a report. It is a caluculated value that can be used only in assessment and top-down-distribution.
    In Ke2K, enter a name for your key figure, then click on the the white sheet button to create it. Now the formular area is open for input. Input your formular (e.g. VV001 + VV002 - VV003 .... where VVXXX are the technical names of value fields).
    Now click the "check formuar"-button. Then save.
    Before you can use the key figure in assessment, execute TC KEUG.
    Now the key figure is available as any value field in the tracing factor selection of your assessment cycle.
    I hope this made it clearer.
    Regards
    Nikolas

  • How to find multiple keys in single cell using Numbers?

    I'm trying to add functionality to one of my Numbers tables where want to check a single cell for multiple keywords from a list. The hole thing works perfectly fine in Excel but it behaves differently in Numbers.
    The formula I am using is:
    =IF(ISERROR(LOOKUP(2^15;FIND($E$2:$E$11;A2)));"not found";"found")
    The following screenshots show that it correctly finds the keys in the cell when using Excel but not in Numbers. Although, it seems to work if the key is in the same row as the input cell.
    Excel table using the formula I posted in the C column:
    Numbers table using the formula I posted in the C column:
    Would be really happy if somebody knows how I could accomplish that!
    Cheers,
    Maik

    If you are working in Numbers you can do this efficiently with a small AppleScript without going back to Excel or clone. One click and you get the following result:
    This script works with Numbers 2.3, which your screenshot suggests you are using. If you are using Numbers 3 it needs a very small adjustment.
    This is the script:
    --https://discussions.apple.com/thread/6315365?tstart=30
    property inputCol : 1 --> col A, as in example
    property resultCol : 3 --> col C, as in example
    property keysCol : 5 --> col E, as in example
    property targDoc : 1 --> 1 is front document; can change to "MyDocName"
    property targSheet : 1 --> 1 is first sheet; can change to "MySheetName"
    property targTable : 1 --> 1 is first table; can change to "MyTableName"
    tell application "Numbers"
              set t to document targDoc's sheet targSheet's table targTable
              set keysList to t's column keysCol's cells's value
              repeat with i from 2 to t's row count -- assumes 1 Header Row
                        set inputVal to t's row i's cell inputCol's value
                        if inputVal is not 0 then --skip blank cells; Numbers 2 reads blanks as 0
                                  --check if Input matches a key:
                                  if inputVal is in keysList then
                                            set t's row i's cell resultCol's value to "found"
                                  else
                                            set t's row i's cell resultCol's value to "not found"
                                  end if
                                  --check if Input contains a key:
                                  repeat with aKey in keysList
                                            if inputVal contains aKey then set t's row i's cell resultCol's value to "found"
                                  end repeat
                        end if
              end repeat
    end tell
    --end of script
    To run, copy into AppleScript Editor, change the properties if needed, and click the green triangle 'Run' botton.
    SG

  • Condition formula variable on date key figure

    Hello, I would be grateful for any help on this
    I want to have a condition that has a user input formula variable
    But the Key Figure on which I want to base the condition is a Date
    And when you create the formula variable it allows only the following Dimensions :
    Amount
    Number
    Price
    Quantity
    ie Date is not one of the allowable Dimensions - is there any way round this apart from an Exit variable ?
    thanks
    Jon

    Hi,
    You have to create a formula variable with replacement path based on the date you want.
    so that you can get the date for calculation.so you can apply condition.
    check the following link
    http://help.sap.com/saphelp_nw04/helpdata/en/03/6ba03cc24efd1de10000000a114084/content.htm
    Regards,
    Ranganath

  • How to create tabular form whithout primary key in table

    Hi All,
    I have requirement to create a tabular form but the problem is, the table which I am using in the application don't have any Primary key, I am using only one table can't change any thing in table.(i.e can't add any row in table,no change in data model)
    How can I create tabular form when primary key is not available.
    looking forward for all of your quick responce.
    Thanks in advance.
    Dikshit Kumar Nidhi

    You can create a view like
    select a.rowid id, a.*
    from table a
    and create a tabular form on this view. You can use
    the new column ID as Primary key.Did you try to actually do this? I did at
    http://htmldb.oracle.com/pls/otn/f?p=24317:159
    And when I change something and click Submit, I get an error
    Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-01733: virtual column not allowed here, update "VIKASA"."NO_PK_VW" set "ID" = :b1, "I" = :b2, "J" = :b3 where "ID" = :p_pk_col
    Thanks

  • Cursor behaviour when quick key zooming

    Is there a way to change the cursor behaviour when using a quick key (cmd-space) zoom?
    When laying out complex forms i often need to quickly zoom in to accurately position (say) a checkbox i've just place on the page, but if i cmd-space zoom i have to then click the arrow tool before i can continue positioning the element in question.
    Not a big problem with one element but if i need to zoom in tight to reposition a number of elements i've selected, the need to click the arrow tool after the zoom causes that selection to deselect. Which means zooming in on each one to position it.
    In short, is there any way for acrobat to revert to the current tool after a quick key zoom?

    JFrame.setDefaultLookAndFeelDecorated(true) has bugs! I agree. I created my own lookAndFeel extending mostly from MetalUI components. I then made my own RootPaneUI and TitlePane, so I was knee deep in the MetalRootPaneUI code. You cannot fix the flicker problem. When resizing, the new bounds are determined and then setBounds is called on the window, either a Frame or Dialog. The setBounds call forces lightWeight components to repaint(), causing the flicker.
    sometimes, when resizing, the resize cursor will not be reset after resizing.I found this one two. I actually fixed this one. In the MetalRootPaneUI.MouseInputHandler.mouseEntered(line:878):public void mouseEntered(MouseEvent ev)
      Window w = (Window)ev.getSource();
      // change this line to the one below it
      //lastCursor = w.getCursor();
      lastCursor = Cursor.getPredefinedCursor(0);//should work now
      mouseMoved(ev);
    }What appears to happen is when a Dialog is closed over a JFrame, the cursor gets screwed up somehow. I was able to recreate the bug. I simply made a JFrame with a button that created a dialog. I then used the titleBar's closeButton to close the dialog. Just after clicking the closeButton, I moved my mouse quickly over the edge of the dialog before it had a chance to disappear. Sometimes I was fast enough and the cursor got stuck. The above code is all I could do to fix it.
    The resizing was filckery or slow whether I used the real MetalRootPaneUI or my own. I also tried the dynamicLayout and noerasebackground with unacceptable trade-offs. Luckily my app only has one JFrame. So, I only setDefaultLookAndFeelDecorated JDialogs, which are never resizable in my app. This means that my JFrame is the only window in the app that uses the OS TitleBar rather than my own. Although, my JFrame resizes without flickering.

  • Resulting Formula in 'Numbers' is 1 digit short!

    It's kinda driving me insane so your help is greatly appreciated as I don't know what I'm doing wrong!
    Basically, the resulting 'SUM' i.e. 'the resulting answer to selected cells' is incorrect, it's 1 digit short and it's just a very basic formula of adding-up the numbers in cells which is all I'm trying to achieve,... It seems utterly nonsensical as to why it's doing this.
    As an example; 90.48 + 99.88 = 190.36 - Numbers however has decided irrevocably that the answer is 190.35.
    I mean, what the ****?
    The problem however does not persist from a newly create blank 'Numbers' template so I'm thinking I've done something to screw-it-up but I can't think what,... and as I'm working on a fairly large spreadsheet, I really do not want to keep starting over, like I have nothing better to do than sit here recreating spreadsheets & repeating myself like there's no tomorrow 'watch out Bill Murray, here I come' every time 'Numbers' decides it wants to reinvent the numerical wheel.
    Many thanks in advance for any assistance on what will hopefully be a fairly uncomplicated, undemanding, effortless and painless solution.

    Thanks guys, that makes complete sense, I'm truly grateful for your responses, however, (apologies) having searched the forum, I'm still a little lost with how I actually 'ROUND' the figures up, there's indeed lots of 'ROUND' related subjects which I've checked out however I'm not fully grasping it, i.e. do I place the 'ROUND' formula within the 'result' cell or elsewhere, :/ (I know, please excuse my empty-headedness at this hour).
    Nothing I try seems to work, I'm just completely missing it,... Although your responses are bang-on
    I'd be so grateful if someone could provide me with an example of how I actually type those specific numbers and words into the cells to get the result I'm seeking, i.e. as in the example provided, a brief description, 90.48 + 99.88 resulting in 190.36 instead of 190.35 and how thats typed out in each cell to once again, get the outcome I require,...
    It's imperative I get the spreadsheet figures matching the invoices.
    Thank you, Thank You, Thank You!

  • Issue in creating formula using atributes

    Hi All,
    I have issues in creating formula using attributes of characteristic. I need to create a formula using attributes of charactertic customer & key figure.
    Ex. Formula
    Key figure / attribute of char customer
    Please suggest.
    Thanks,
    Mamata

    Hi Mamta,
    I do not think we have any option of creating RKF based on Display attribute. Rather you create RKF based on Navigation attribute.
    Regards,
    Kams

  • Can't assign a number to a quick key in favorites

    The "1" is allocated for Voicemail, but otherwise, the system doesn't allow you to allocate numeric values to Quick Keys. I need this in order to allow my BlueAnt voice commands to work, as they require numeric hot keys.
    Anyone have any ideas? 
    Post relates to: Centro (Unlocked GSM)
    Post relates to: Centro (Unlocked GSM)

    Hello!
    Unfortunately the PalmOS does will not give you the option for number use on the quickkeys in return to use the full characters on the keyboard, not limited to just 0-9.  The reason for this is that you would have to press the funtion key and then press and 0-9 to get a number value.  This would be self-defeating to allow numbers since it would mean you have to press more than one button to get the numerical input and the hold down function does not work with the function key.
    Voicemail has 1 already in it because that's a mandated function by all carriers to which your SIM card pushed that to your phone.
    Message Edited by thetreoguy on 03-10-2009 03:12 PM

  • How do I use the product formula in Numbers?  I want to calculate the product of three numbers?  In Excel it is simply calculated as '=b4*b5*b6.'  How do I do this in Numbers?  I cannot figure it out, and I can't type in the Excel type formula.

    Can someone tell mr the steps to write a formula to calculate a product of the cells?  I cannot figure it out.

    You double click the cell the product is to be placed in.
    Then click the "=" from the little bar that appears above the numeric keyboard.
    Then click cell B4.  That should place its reference in the bar to the right of the equal sign.
    Then click the "x" from the function guide next to the numeric keypad.
    Then click cell B5.
    Then click the "x".
    Then click cell B6.
    Finally click the green check mark on the right.  Done.

Maybe you are looking for

  • Photoshop CS4 and PowerPC G5 GeForce 6600

    I get frequent alert from Photoshop CS4 regarding display driver which say's to check for driver update and that Open GL 2.0 is not available and that GPU is turned off. I can work in the photoshop but a few things are slow and look is not that great

  • Don't know how to format external hard drive

    dont know how to format my new external hard drive can anyboby help me not very good with computers   thanx

  • Unable to email a document.  Keep getting error message:  Invalid Date Enter 2-digit month

    Unable to email a document.  Keep getting error message:  Invalid Date Enter 2-digit month Does not happen with all forms which emante from same USG webpage Any adivice?

  • Idoc HRMD_A07

    Hi Friends, Present requirement is like this using message type HRMD_A & Change pointers with Distribution model generate the IDOC & transfer to the extenal system. Kindly guide the below condition how to work. " If you want to distribute HR master d

  • Usage Tracking - Access problem when Authentication Mode = Windows

    Hi Everyone, I´m working on UPK Usage Tracking configuration, in order to provide the finished training material. 1) In Server01 (on Window Server 2003) the UPK Usage Tracking is installed 2) In Server02 (also on Windows Server 2003) the Usage Tracki