FORMULA REFERENCE BY CELL # OR CELL NAME

THIS ARE TWO EXAMPLES
HOW CAN I CONTROL TO HAVE IT ALWAYS DO CELL NAME  OR CONTROL TO DO CELL #

Hi Tom,
From the tags below your question, I assume your are using Numbers 2.3 on OS X Mountain Lion.
In Numbers 2.3 > Numbers Preferences > General:
Similar in Numbers 3.2 (on OS X Mavericks)
That option (ticked or unticked)  will allow you to to choose between Header Cell names and Cell References (such as A1).
With 'Use header cell names' ticked, you must have at least one Header Row in that table. Select the table and Menu > Table
In general, I would advise against using Header names as references in formulas. That will slow Numbers down and make it more difficult to debug errors. But that is your choice .
Please reply with your aim.
Regards,
Ian.

Similar Messages

  • How can I insert reference to cell on a different sheet in Numbers beta?

    In Excel or Numbers for iPad, I start typing in a cell, switch to another sheet and click a cell or range, hit enter, and I'm back on the original sheet with the cell reference inserted.  I saw documentation that it works the same way in Numbers Beta on Mac, but it doesn't.  When I leave the sheet, I'm not editing the cell anymore.
    Very frustrating.   This function is often necessary, and long formulas are tedious on iPad.  So far the most reliable method is to export back to Excel, make the change, and re-export to iCloud.

    I struggled with this same issue until this week.  You have to actually type references in cell.  And spacing is the key to making it work.  Make sure to put a space before and after each double colon.
    =SheetName :: B3
    =08 20 14 :: B3
    I you are linking to a different table in a sheet, you have to include the table name also.
    =08 20 14 :: No Shows :: D5

  • I want to reference a cell from another table and fill it with text

    I I have several tables that update each other with data from the previous one. These tables are identical and follow each other by date. In each table is a cell (B1) where a persons name goes. the cell (B2) references another cell from a previous dated table. Some days, consecutively, no name is entered in to cell B1. I want cell B2 to always refer back to the most recent table with a name is cell B1. How can this be done?
    I have written this formula (applied to cell B2 of this example) already: IF(Day 1::B1="","",IF(Day 1::B1≥"",Day 1::B1))  but it only references the previous days table and stops there. Some days nothing is inputed into cell B1 causing causing the following days table cell B2 to show "0".
    Monday, April 1
    Driver
    Driver for Today
    David
    Previous Driver (Last person to drive vehicle)
    Tuesday, April 2
    Driver
    Driver for Today
    Previous Driver (Last person to drive vehicle)
    David
    Wednesday, April 3
    Driver
    Driver for Today
    Mike
    Previous Driver (Last person to drive vehicle)
    David
    Thursday, April 4
    Driver
    Driver for Today
    Previous Driver (Last person to drive vehicle)
    Mike
    Friday, April 5
    Driver
    Driver for Today
    Previous Driver (Last person to drive vehicle)
    Mike
    Saturday, April 6
    Driver
    Driver for Today
    Carl
    Previous Driver (Last person to drive vehicle)
    Mike
    Sunday, April 7
    Driver
    Driver for Today
    David
    Previous Driver (Last person to drive vehicle)
    Carl

    "I am having trouble getting the formulas you suggested to work. I am not sure where the problem is coming from. Could you look at the following spreadsheet and tell me where I am going wrong? The following pic shows Day 1 and AUX tables. In Day 1 cell B1 a Drivers name is entered. As you can see by the formula that you gave the B2 is for "Product" not the drivers name "David"."
    Hi br,
    The formulas provided above apply directly to the set of tables shown with them. In each of these tables, the target cell, containing the name of the driver for that day is cell B2 on the table for that day.
    For Day 1, the driver is Huey, found in cell B2 of Table 1, and the cell reference to retrieve the information from that cell is =Table 1::B2
    The formula in B2 of Aux uses INDIRECT to build that cell reference from the fixed text string "Table ", the calculated value ROW()-1, and the text string "::B2"
    ROW() returns the number of the row in which the function sits. In B2, that's row 2, and ROW() returns 2. -1 subtracts 1 from that value, leaving 1. In B2, ROW()-1 returns 1.
    The ampersand is the concatenation operator. It joins the value before it to the value following it. The result is a text string. in the INDIRECT part of the formula, there are two & operators, one after "Table ", the other after ROW()-1.
    "Table " & ROW()-1 & "::B2" with the result of ROW()-1 as the value between the two text strings.
    "Table " & 1 & "::B2"   =   "Table 1::B2"
    INDIRECT( ) takes that text and converts it to the cell address that it represents.
    B2: =IF(LEN(INDIRECT("Table "&ROW()-1&"::B2"))<1,"",INDIRECT("Table "&ROW()-1&"::B2"))
    The first instance on the string in the formula is a test to see if there is anything in the target cell. If not, the formula returns a null string. If there is at least 1 character there, the second instance of INDIRECT is called on to return the name to B2 of the table Aux.
    Compare your formula below:
    B4: =IF(LEN(INDIRECT("Day 3"&ROW()-1&"::B2"))<1,"",INDIRECT("Day 3"&ROW()-1&"::B2"))
    As shown, this is the formula in B4 of your Aux table. In Row 4, ROW() returns 4, and ROW()-1 returns 3.
    So the three elements of the cell address constructed in INDIRECT are "Day 3", 3, and "::B2"
    The cell being addressed is "Day 33::B2", cell B2 on the table named Day 33.
    The error results from there being no table with that name.
    The fix (to the table part of the reference) is to change the first text string to "Day " (including the space after the word Day).
    The fix to replace Product with the driver name is to change "::B2" to ::B1"
    To fit the names of your day tables and the location of the driver's name on each, your formula in B2 should read:
    B2: =IF(LEN(INDIRECT("Day "&ROW()-1&"::B1"))<1,"",INDIRECT("Day "&ROW()-1&"::B1"))
    Regards,
    Barry

  • How to add hours to a reference time cell??

    I am making the switch to Numbers from Excel and can not figure this out.
    I have one cell as a time : 10:00 AM - A1
    In Cell B4 I want 10:00 AM plus 6 hours.
    I can't figure this out ! In Excel I would out , =A1+"6:00"
    Not sure if the cells are formatted incorrectly but I have tried all the date and time formats.
    HELP!
    Thank you

    In the future it would be best to post your three additional questions as three new topics. Don't worry about whether anyone will look at them. This is a very active discussion area.
    1. Is there a toolbar or keystroke short cut to merge cells? I see it in the menu bar but need a shorter option
    Yes, you can make your own custom shortcut. Go to the Keyboard section of System Preferences. I must say that I don't like merging cells in Numbers. It has the potential to get you into trouble and should be avoided. Having a shortcut just makes this evil more tempting, in my opinion. Numbers doesn't have the great need for merging cells that Excel does. You can make separate small tables in Numbers and you can give them descriptive names that will display above the tables, if you choose. You also can intersperse Text Boxes and Shapes with text in them to annotate your sheets. Merging cells isn't so imperative in Numbers as your past experiences my have led you to believe.
    2. If I want to reference another cell on another sheet can I name the cell that I wish to reference? Ie: Sheet 1 cell c4 , I would like to name : start, then in other cells I would write , =start. I can do this excel but no luck so far in numbers.
    Yes you can. There are two ways you can learn about this. First, you can insert a reference to a remote cell by navigating to it using the Sheets Pane and then clicking on the cell you want to reference. Then take a look at what Pages inserted for a reference. This will give you the format (syntax) for doing it manually. You can also learn about referencing remote cells by reading the Numbers User Guide PDF and the Formulas and Functions User Guide. Then are both available from the Help Menu for download.
    3. Move that sidebar menu to the bottom??
    No.
    Regards,
    Jerry

  • Is there any way to tell which formulas a particular cell is in, reverse look-up style? That is, is there a way to search somehow for which formulas in a sheet contain a particular cell in them without opening all of them up? If not, it would be nice

    Is there any way to tell which formulas a particular cell is in, reverse look-up style? That is, is there a way to search somehow for which formulas in a sheet contain a particular cell in them without opening all of them up? If not, it would be nice.
    I'm fixing a Numbers document that I use in business daily that's become overly complicated, but while I want to clear/delete a number of cells in it to clean it up, I'm not sure if those cells are being used as source for other formulas on the page. I don't have to open all my formulas one by one to see if that cell is in there, do I?! That'd be a huge amount of work if I wanted to eliminate say 10 cells to search each formula on the page to see if it is in there or watch all the cells when I delete that cell to see if the numbers change! There's got to be an easier way! Right click doesn't seem to be any help.
    I don't want to damage my daily tool to make it cleaner and reorganize it. Is there really no way to do a reverse look-up of which formulas a particular cell is in?! Any time I click on a formula it highlights all the CELLS in that formula. Why can't I (or can I?) do the reverse and see all the FORMULAS that contain a particular cell?
    As a Numbers document ages or gets used frequently, you can sometimes forget which cells are tied to which formulas. You just look for the results of your formulas. Would be a nice thing to be able to do. Thoughts? Work-arounds? Answers?

    Answer would be no unless application provided such feature. Numbers does not as far as I know.
    Note that even if you have complete list of formulae used in a table, identifying formulae referencing any given cell is not simple.
    E.g., cell T20 is referenced not only in
    =T20+1
    but also in
    =SUM(T)
    =SUM(20:20)
    =SUM(S19:U22)
    =OFFSET(S1,19,1,1,1)
    =INDIRECT("T"&(10*2))
    In order to identify such formula, we have to actually evaluate it to see if it references the given cell. Especially such formula as OFFSET() and INDIRECT() may not be found by static parser because their parameters can be dynamic.
    Sorry to be the bearer of bad tidings.
    H

  • Adding formula to a cell that is in another table in the same document

    Hi there.
    I am new to iwork and i have a question.
    I created a document in pages and i added diffent tables in the same document.
    The question is how can add a formula to a cell include cells that are on different tables?
    Thanks

    Not possible in Pages, only in Numbers.
    You will need to have just one table and have the references internal.
    You can make it look like separate tables by hiding cell borders etc inbetween, if that is necessary.
    Peter

  • How to define a cell name in numbers?

    How do I define a cell name to use in a formula. I want to calculates costs for a dinner function where the number of guests, costs etc are variable. I want to use the number of guests in different formulas in the spreadsheet.
    So I need to have a cell where I enter number of guests once and this will then reflect in all formulas where I use the cell name: 'number_of_guests'
    Thus cell A1 will have the name 'number_of_guests' and I could type any number in there.
    A formula in a later cell will then be =$100.00*'number_of_guests' to get a total cost, etc.

    Yvan KOENIG (VALLAURIS, France) lundi 26 décembre 2011 12:03:51
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Struggling with Applying Cell refences of formulas to multiple cells

    Probably a basic question- I am new to Numbers.
    Ive been struggling for ages with applying a formula or cell reference to more than one cell at a time. If I select multiple cells (shift or command clicking them) - then I am unable to create a new 'Cell References'. Pressing the equals = sign merely gives me an error sound. And the formula bar is not accessible
    I have been struggling with this on and off now for about a week. Help - well it doesn't help and implies that I am doing the right thing, but it is not working. - Please help

    marky3 wrote:
    I ve been struggling for ages with applying a formula or cell reference to more than one cell at a time. If I select multiple cells (shift or command clicking them) - then I am unable to create a new 'Cell References'. Pressing the equals = sign merely gives me an error sound. And the formula bar is not accessible
    I have been struggling with this on and off now for about a week. Help - well it doesn't help and implies that I am doing the right thing, but it is not working. - Please help
    A better use for your time was to read carefully *Numbers User Guide* and *iWork Formulas and Fucnctions User Guide*.
    We may insert a reference to a range of cells in a cell's formula but we can't insert a formula in several cells with a single task.
    The correct protocol is :
    insert the formula in the first cell of the range then use the fill down (or fill up or fill to the right or fill to the left) feature.
    Yvan KOENIG (VALLAURIS, France) dimanche 21 février 2010 22:21:40

  • Structure XPTO contains formulas that use cells as part of the formula

    Hi,
    I'm having the following error in query designer.
    "Structure XPTO contains formulas that use cells as part of the formula".
    In the query i'm working I don't use cells.
    Do you know what this error means.
    Best regards,
    João Arvanas

    Hi João, Is there a possibility any of your formulas in the structure may be referencing some other query / CKFs? Is it possbile your structure was created in another query & reused in your new one? If so, you may unlock all links using the option 'Remove Reference' which can be accessed by right clicking on your structure.

  • How to Update a particular cell in Excel with its specific cell Name?

    {color:#000080}Hi,
    I have connected my Java program to Excel using JDBC ODBC connection and also I am able to read/write data to Excel currently.
    In my write code, I have updated the data in particular Excel cells by using conditions in "where" clause.
    Example:
    String $mcode="hello";
    double da1 = Double.parseDouble(txtda1.getText());
    st.executeUpdate("insert into [Sheet4$] values (' " +$mcode+ " ')");
    st.executeUpdate("Update [Sheet4$] set Lot1="+da1+" where Lot1='"+$mcode+"'");
    But I would like to refer to the individual excel cells by their cell name instead of like the above said one.
    In whatever I saw, third party tools were used to refer to the excels cells by their name. But I have to refer to in an ordinary way.
    It would be great if somebody could help me in referring to Excel cells by their name.
    Thanks in advance!{color}

    I don't think it is possible to refer to cell in excel using jdbc, since jdbc is intended to communicate with mostly database in generic way. So you have to use queryStrings to update or retive cell info.
    The only way to access them by cell name is possibly by using some third party tools.

  • Is it possible to reference one cell from the value of another?

    Is it possible to reference one cell from the value of another e.g.
    value of b1 = value of c(value of a1)
    So if a1 = 3 then b1 = c3, if a1 = 5 then b1 = c5.

    Excellent!
    Thanks Wayne. Just saved me many hours and a headache.
    Works like a dream.
    Thank you for your succinct (and accurate) answer.
    Mark

  • Report Painter: Separate formula in each cell of a column

    Hi,
    I'm creating a report painter report using GRR1. My 1st column is particulars (which includes revenue & costs) and 2nd column is % to sales. I need a separate formula in each cell of column2 to divide the contents of the respective cell in column1 by sales (the figure in 1 cell) & then multiply it by 100. Is this possible? If yes, then how?
    Regards,
    Sangeeta

    Any suggestions guys????
    Regards,
    Sangeeta

  • How can I move columns in Numbers without distorting the formula in other cells?  In Excel I can cut and paste entire columns and the formula in other cells adjusts accordingly.  When I do it in Numbers, the formula messes up.  How can I do this?

    How can I move columns in Numbers without distorting the formula in other cells?  In Excel I can cut and paste entire columns and the formula in other cells adjusts accordingly.  When I do it in Numbers, the formula messes up.  How can I do this?
    For example: I have formulas in columns D and F that relate to columns C to CU
    If I want to move one column from one position to another (say S to T), the formula loses the colums that was moved, i.e. it doesn't recognize it has moved, rather sees it as deleted...  How can I do this without distorting the formula?

    Thanks for the feedback.
    If I often urge askers to look at the available resources, it's because  a large range of questions asked in the forums are already answered in these documents.
    As they are PDFs, they are easy to search in.
    CAUTION
    Download them while they are available.
    Given what is delivered with iBooks Author, I'm afraid that we will not get such easy to use documents.
    Searching infos in the  iBooks Author documentation available on line is awfully cumbersome and a lot of embedded links are wrongly flagged this way. In the Help files they aren't links but underlined strings.
    It seems that the tool used to generate the web pages was wrongly configured.
    Yvan KOENIG (VALLAURIS, France) dimanche 22 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
    My iDisk is : http://public.me.com/koenigyvan

  • Can I get the formula in a cell of the embedded spreadsheet?

    Hello,
    With the Xcelsius SDK, is it possible to retrieve the actual formula in a cell of the embedded spreadsheet at design time?
    We've tried several IPropertySheetProxy functions, with no luck:
    proxy.getBindingAddresses(id) gives [Sheet1!R1C1]
    proxy.getBindingDisplayName(id) gives 'Sheet1!$A$1'
    proxy.getBindingValues(id) gives the result of the evaluated formula
    proxy.hasFormula(id) returns true
    Is there a way  to retrieve the formula itself, as a String, e.g. "=B1-A1" ??
    Thanks,
    Sam

    View (menu) > Show Formulas List
    OR
    Press option-command-F
    will show a list of all formulas and their locations.
    Clicking any item in the list will select that cell, bring it into view, and show the formula in the entry bar above the working area of the window.
    Regards,
    Barry

  • What formula automatically copy cells in numbers

    what formula automatically copy cells in numbers

    Its a matter of how you enter the formula (and not entirely intuitive). Do NOT manually add any quotes - Number does that for you. Just leave the text area blank for boolean value. If you actually type in the quotes, it reads them as a text value.

Maybe you are looking for

  • FCPX crashed. Crashes now at startup.

    PROBLEM REPORT reads like so: Process:         Final Cut Pro [760] Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro Identifier:      com.apple.FinalCut Version:         10.0.7 (213121) Build Info:      ProEditor-213120010

  • No data in Production system

    Hi Experts,                      I have a very critical query. In  my 0Employee master data for some  employees their Personal area and personal Subarea are maintained for certain valid period in Quality system but for the same employees  for same va

  • Use of % for height with application.cfm

    How comes the height in % in both tags doesn't works when an application.cfm exists. When I remove the application.cfm everything works fine. <iframe src="messages.cfm" width="95%" height="74%"></iframe> <cfform format="flash" skin="halosilver" wmode

  • Mp4 not showing up as import in iDVD

    Hi all, Trying to do my first iMovie to iDVD (7.1.1) burn but coming up with an issue and I'm looking for a little help I made a collection of home movies in iMovie and then used the "Export using QuickTime" option (I found an article/movie online th

  • Exchange backup from separate 10Gb network

    Hi, is it possible to add to my Exchange 2010 DAG servers another IP address from separate network only for 10Gb backup. Backup is made from NetBackup software. My regular traffic will be default, but DAG backup traffic on new 10Gb network.