Building Expressions with Repeated Cell References

I have noticed a difficulty with building an expression using the 'Point and Click' method of inserting Cell References in Numbers 09.
The first time a particular cell is clicked, its reference is inserted properly in the expression at the cursor. If another reference to the same cell is required in that expression, clicking on the cell again does not result in another reference to it at the cursor, instead the cursor jumps to the previous reference to that cell.
The two options for adding a second or third reference to a particular cell are to type the reference or to keyboard-navigate to the cell with the Option key.
Am I missing something?
Jerry

Jerrold Green1 wrote:
Yvan,
A solution looking for a problem in my case! I like the drop-down menu for reference type,
I like the drop down menu too but I don't understand why the ƒx button appears only when I type = in a cell.
I always send the mouse to the format bar before typing = (as I did in AppleWorks and Numbers '08).
I may understand why they moved the Cancel and Accept buttons to spare some pixels for the formula but from my point of view, moving this ƒx button is boring
But maybe I'm the unique user with this epidermic reaction.
Yvan KOENIG (from FRANCE jeudi 19 février 2009 18:28:03)

Similar Messages

  • Impossible to use SAPGETDATA function from an intermediary level of a hierarchy with a cell reference.

    Hi Gurus,
    It is impossible to use SAPGETDATA function from an intermediary level
    of a hierarchy with a cell reference.
    When I open completely a hierarchy node I manage to get the bottom level
    using a cell reference.
    But I cannot do the same thing from a level above.
    I attach screenshots.
    Best regards,
    Thierry Chiret

    Hello,
    I find the soluce :
    Regards,
    Thierry

  • Add Row instance but with adjusted cell references

    Is there a by to use the  AddInstance and have the cells in the "new" row have adjusted cell references , such as Cell1-1, Cell1-2 or will they have the same name always?
    I want the info from the cells to link elsewhere with Global Binding.
    Thanks,
    tucson102

    You cannot change the names of form objects during runtime.
    When you repeat an existing row, all child elements (cells) will have the same name as in the other instances of the row.
    Table1.Row[0].Cell1, Table1.Row[0].Cell2, Table1.Row[0].Cell3 etc.
    Table1.Row[1].Cell1, Table1.Row[1].Cell2, Table1.Row[1].Cell3 etc.
    Table1.Row[2].Cell1, Table1.Row[2].Cell2, Table1.Row[2].Cell3 etc.
    Table1.Row[3].Cell1, Table1.Row[3].Cell2, Table1.Row[3].Cell3 etc.
    If you make those cells binding global all cells with the same name will be global too and have the same value.

  • How to use toplink "build expression"  with soundex function

    We are using toplink experssion builder to build the query. can any one help me on build a query with soundex using toplink..
    for example :
    SELECT last_name, first_name
    FROM hr.employees
    WHERE SOUNDEX(last_name)
    = SOUNDEX('SMYTHE');

    TopLink's ExpressionOperator does have an operator defined for soundex. I have an example that uses it that I customized to match you case.
    I would recommend defining these queries as named queries using an after-load method:
        public static void afterLoadEmployee(ClassDescriptor descriptor) {
            ReadAllQuery raq = new ReadAllQuery(Employee.class);
            ExpressionBuilder eb = raq.getExpressionBuilder();
            Expression fnExp =
                ExpressionOperator.soundex().expressionFor(eb.get("lastName"));
            Expression valExp =
                ExpressionOperator.soundex().expressionFor(eb.getParameter("L_NAME"));
            raq.setSelectionCriteria(fnExp.equal(valExp));
            raq.addArgument("L_NAME", String.class);
            descriptor.getDescriptorQueryManager().addQuery("Employee.findBySoundexLastName",
                                                            raq);
        }Now you can execute the query anywhere in your application using:
            List<Employee> emps =
                (List<Employee>)session.executeQuery("Employee.findBySoundexLastName",
                                                     Employee.class, "SMYTHE");The SQL generated is a little different due to the multiple tables used in the employee example model but here is what I got:
    SELECT t0.EMP_ID, t1.EMP_ID, t0.F_NAME, t1.SALARY, t0.L_NAME, t0.GENDER, t0.VERSION, t0.ADDR_ID,
    t0.MANAGER_ID, t0.END_DATE, t0.START_DATE FROM EMPLOYEE t0, SALARY t1
    WHERE ((SOUNDEX(t0.L_NAME) = SOUNDEX('SMYTHE')) AND (t1.EMP_ID = t0.EMP_ID))Doug

  • Scaling factors for queries with cell references

    Hello Experts,
    We have this issue, we have queries which have 2 global structures with the cell references for few of the elements of rows and columns structure.
    we need the scaling factors and currencies of the query which are defined in the rows and columns structure are to be displayed as separate column but with in the cells.
    We have checked for the queries with the 2 structures without cell references are displayed as we need. But for the queries with the cell references on the 2 structures are not displaying the scaling factors as we need in separatly.
    how can we make the query to display the scaling factors along with currencies to be in separate column.
    we have entry selection as currency where we have only one currency can be entered so the we do not have the problem of multiple currencies.
    please find the screen shot how we need the scaling factors to be displayed for the queries with cell references.
    We have scaling factors enabled as 1000 for KFs and for % selections we have scaling factors as 1.
    Thanks,
    Santhosh

    Hi
    If 'Cell Editor' is been used then that query must have the structure in it. You have to select that 'structure' object in your 'VC Table'.
    If you select that then you will get the required result in the output. This structure will be the structure where 'cell reference' is used in BI query, You have to select that structures name.
    Regards
    Sandeep

  • Help with conditional build expressions

    I'm using RoboHelp HTML and creating WebHelp Pro layouts. I
    want to create five (or more) different versions of the Help tool
    for our various groups of users.
    Here's what I'd like to do: Create a conditional build tag
    for each of the versions (i.e. each of our groups of users). I
    could name them as follows:
    group1
    group2
    group3
    group4
    group5
    Then, I would associate each topic with one or more of the
    build tags. For example, topic1 may be for group1 and group2;
    topic2 may be for group1 and group4. Etc.
    The problem is thus: When I want to create the version for,
    say, group1, my expression ends up excluding the other groups. In
    the end, this omits any topics associated with group1 that are also
    associated with the other build tags (i.e. the other groups).
    Is there an expression I can use to prevent these topics from
    being omitted? Perhaps the use of parentheses?
    The only solution I've used is tedious: I create many build
    tags--one for each variation. For example, I'd have a
    group1group2group3 build tag, a group1group3 build tag, a
    group1group4 build tag, etc. Then, I just associate one build tag
    with each topic. When I'm creating a version for group1, for
    example, I'd just include all topics with a build tag that includes
    group1 (e.g. group1, group1group3, group1group2group3, et. al.). I
    omit the others (e.g. group2group3, group2group4,
    group2group3group4group5...et. al.).
    As you can imagine, this solution is problematic. First, I
    have to create and keep track of many many build tags. Then, if I
    want to create another version of Help, I need to change all the
    build tags to include this new group.
    I'm sure there must be a better build tag expression for what
    I'm trying to accomplish. Please help! Thanks!

    There is indeed an expression! Unfortunately, the option is
    normally hidden, so it can be tricky to find. Here's what you do:
    1. Define the build tags.
    2. Apply them to your topics. OVERLAPPING IS ENCOURAGED! That
    is to say, you can assign tag1, tag2, and tag3 to a single topic.
    3. Right-click the desired layout and select Properties.
    4. Click the Define button to the right of the Conditional
    Build Tag drop-down menu. The Define Conditional Build Tag
    Expression dialog will appear.
    5. Click the Advanced button. The Advanced area will appear
    at the bottom of the dialog.
    6. Select a tag from the Available Conditional Build Tags
    drop-down menu.
    7. Click the Add Tag button. The selected tag will appear in
    the Conditional Build Tag Expression display window.
    8. Click the AND button.
    9. Select another tag from the drop-down menu.
    10. Click the Add Tag button.
    11. Repeat steps 8-10 for each tag you wish to add to the
    expression.
    12. Click the OK button to close the dialog.
    13. Click the Save button to save your layout with the new
    build expression.
    That's it! The trick is to use the ADVANCED button in the
    Define Conditional Build Tag Expression dialog. Doing so allows you
    to build inclusional expressions rather than exclusional
    expressions, so you can avoid the hassle you described in your
    post. Using this method, I defined two build tags (A and B) and
    applied them to three topics as follows:
    * Topic 1: Tag A
    * Topic 2: Tag B
    * Topic 3: Tags A and B
    I then defined an expression that simply included tag A. When
    I compiled my help, topics 1 and 3 appeared in the output, but
    topic 2 did not.

  • GetPivotData with cell reference in a Table

    I was told that this might be a better place to post this question than Microsoft Answers for Office.
    I have a Table in which I need to use a GetPivotData function.  I need to use a cell reference in that GetPivotData function.  I have done this before with no problem in a normal cell range, but it seems like the syntax when using a Table screws
    things up.  Can anyone help me out here?
    The GetPivotTable function would normally look like this if not in a Table.
    =GETPIVOTDATA("[Measures].[Total Blocked Dollars]",'Sheet2'!$A$4,"[Dim Prod Ctrl No].[By Prod Ctrl No]","[Dim Prod Ctrl No].[By Prod Ctrl No].&[18418]")
    That formula sits in a column called "Block" in my Table.  The 18418 sits in a column called "ID" in my table.  So what I have tried is:
    =GETPIVOTDATA("[Measures].[Total Blocked Dollars]",'--Report Blocks--'!$A$4,"[Dim Prod Ctrl No].[By Prod Ctrl No]",concatenate("[Dim Prod Ctrl No].[By Prod Ctrl No].&[",[@[ID]],"]"))
    I have tried a few combinations like this but I can't seem to use a cell reference from a table (which requires the [@[field]] syntax) to work with the GetPivotData.
    Any ideas?
    Thanks!

    That's not the issue.  The GETPIVOTDATA function is actually IN a table.  The arguments for the GETPIVOTDATA function need to reference a cell/column in the table, and it's only PART of the argument that needs to be replaced.  In the example
    below the 18418 needs to be replaced with the data in the same row of the table in a column named ID.
    =GETPIVOTDATA("[Measures].[Total Blocked Dollars]",'Sheet2'!$A$4,"[Dim Prod Ctrl No].[By Prod Ctrl No]","[Dim Prod Ctrl No].[By Prod Ctrl No].&[18418]")
    Does that clarify any?
    Thanks for the response!

  • Working with strings and cell references

    Hi all,
    I'm a fairly new user to the Mac world but I'm a power user of Excel trying to moving into the number environment. I'm currently experiencing some very inconsistent behaviour working with text strings in Numbers.
    I've used both '&' and CONCATENATE to try to concatenate strings and cell references and regualarly I'm getting the situation where the formula initially works and then when I save and reopen the file the cells containing the error return a syntax error.
    Upon examining the formula it appears that the cell references are converted from cell references to simple text so & (b2) & becomes &b2&.
    Any ideas what is causing this?

    I apoligise for this tardy response. Firstly, the issue occurred not when I first create the formula but when I save, close and reopen the document.
    Upon examining the formula, the cell reference is not being recognised and so instead of A2 referencing a cell it's simple A2 which causes an error.
    And this is happening in more than one cell (whole rows of cells actually as I've often created a formula and copied it down 10 or 200 rows).
    It is also happening on more than one file Badunit so I don't think it's a corrupt file.
    It's more than a little annoying though as it means every few days when I go back in to a file I need to spend a few minutes recreating the formulas.
    Any other suggestions?
    Oh and I've tried both methods of formula creation of typing the reference and clicking, but the result is the same.
    Message was edited by: Un-decided

  • Absolute cell references with named cells?

    I know how to make a cell reference absolute with numbered cells, as in $A12.
    But what if the formula includes named cells, as in:
    =Table 1 :: 'Electric - Tank' Annual Fuel Cost+Table 1 :: 'Electric - Tank' annual maintenance
    I have tried the $ in various places, no luck so far. Please help...

    I found another similar thread, and the folks there helped me figured out what I was doing wrong.
    You need $ before EACH reference, both the cell's Row header AND column header. This made sense for the "old" cell label way, but the header names confused me at first. So:
    =Table 1 :: $Electric Tank $Annual Fuel Cost+Table 1 :: $Electric Tank $annual maintenance

  • Permanently set Repeat cell values on table view obiee11g

    Hi,
    By default Analysis presentation Column comes with "Column Value Suppression" but we need to switch "Column Value Suppression" to "Repeat cell values" from source xml reference file
    Note:don't want to do it via analysis table/column properties(its manual work) ..just looking to change permanently by changing xml
    Thanks
    Deva

    Hi,
    What is that datatypeformats.xml ? couldn't find out. once again will explain my requirement
    Creating new analysis(Table/Pivot table view) and applying format as Repeat Cell by changing Table/Pivot Properties to set Enable alternating row "green bar" styling Repeat cell values on table/pivot view (instead of doing manual way)
    Refer the below image --> i just want to avoid manual enabling below Repeat cell option for entire table/pivot view option
    http://i.imgur.com/122wp.jpg?1
    Thanks
    Deva
    Edited by: Devarasu on Nov 26, 2012 5:06 PM

  • Conditional build tags with character styles and ignored text

    RoboHelp HTML v8.0.2.208
    Windows XP Professional Version 2002 Service Pack 3 with 2 GB of RAM
    Output: WebHelp and HTML Help
    I have recently moved my projects from RH HTML X5 to RH HTML 8 and this is when the following problem appeared. I use lots of conditional build tags within the help projects. Some of these tags are for my own use for reference and I combine these with character styles containing a coloured background (highlight) so that they show up in the WebHelp or HTML Help output (e.g. text to identify the software version that the field/feature/text was added, reminders to check details, insertion of bug ID numbers, design document names, etc.). These areas of text are stripped out of the final build for customers by using a conditional build expression.
    What I have noticed is that if a paragraph contains text with a conditional build tag applied AND that tagged text has a character style applied AND an unknown word within the conditional build tag is ignored (with the HTML tag <?rh-ignored text="word_to_be_ignored" ?>), saving the topic, closing it, then re-opening it shows that the conditional build text has stretched to the next conditional build tag, or to the end of the topic if there aren’t any other conditional build tags. This also happens by switching from Design View to HTML View. Note that this doesn’t happen if Ignore All is applied to the unknown word.
    This doesn’t just apply to projects converted from RH X5. I created a new test project in RH8 and the same behaviour was observed. Similar behaviour occurred very occasionally in RH X5 but that seemed to be down to HTML tags being nested incorrectly.
    The largest project contains around 1200 topics and with many hundreds of conditional build text areas this now causes a problem. I’ll probably have to locate every ignored word in an area of conditional text within each project, set it to Ignore All and then manually remove and re-apply the conditional build tags, unless someone can come up with something clever. Can anyone else replicate this and should it be logged as a bug?

    Hi Daggins,
    Thanks - that is good info to have. But as we all agree, that does take away from the point of single-sourcing.
    You aren't misunderstsanding exactly... I am doing all my conditional tagging in FM and it works like a charm in terms of the PDFs that I generate from FM, and even the conditionally tagged text in RH shows/hides correctly. The issue is I am also importing my index and TOC from FM... and even if I have an entire file in FM tagged as conditional (all the text is tagged as conditional, I don't know if you can tag a file as conditional), the file name as a heading it still appears in the RH TOC. There is no text... but in my view it shouldn't appear in the TOC either (it looks like just a broken link when I generate my online help) - this is not ideal.

  • Where is the RC type cell reference??

    why hasn't numbers got the RC cell reference option??
    and the apple-T key cycle thru feature available as you type a formula in excel - where you change from absolute to row relative to column relative and back each time you hit that key combination.
    -it is INFINITELY EASIER to use when building anything besides simple sheets
    A1 B2 is caveman
    Message was edited by: heatsiphonman

    You are correct that in many instances it is an easier way of working on certain types of equations. I have used it multiple times programming automation to populate many cells of data quickly without going through the whole A1 reference style mess.
    Sorry, being an engineer you will understand, I am all about numbers (I'm a Marine Engineer by education):
    Fact: 10% *or less*. 3000 students worth of questions and answers over three years show it. MS documentation and teaching materials don't touch it. MS tests don't touch it. I added it to every class for my advanced/Very advanced users. *Not 1 Knew About It.* No matter how advanced. Your the first person to even ask about it in any forum I have been a part of. And yes, I have been with spreadsheets since visicalc was cool.
    Hope you find a way to use Numbers, I would love to see your models, whether in Numbers or excel. Sounds fascinating.
    Have a great day,
    Jason

  • Replacing an Airport Express with a Time Capsule but it won't connect to the internet.

    Hello, I hope somebody can help.
    I am trying to replace an Airport Express with a 2TB Time Capsule but it won't connect to the internet, via an ADSL modem.
    I have tried everything I can think of, powering down all devices, re-setting all devices, but nothing seems to solve the problem.
    When I first tried to set up the Time Capsule, there was an option to replace the Airport Express using the same settings.
    But there were repeated error messages of 'No DNS Servers' and 'PPPoE server couldn't be found'.
    I also had messages that the password for PPPoE wasn't correct, but when I plug the Airport Express back in again, everything works fine.
    What could the problem be?

    99% of issues with authentication are wrong password or wrong username.. eg it can be strange like the user name is missing the domain.. whereas the Airport Express works fine without it.
    Ring your ISP and make doubly sure you have exactly the correct username and password.
    If it still doesn't work, put the adsl modem back into router mode and try it again directly on the modem.. if it works ok on the modem but fails on the TC that is possible and can be caused by pppoe client using incorrect authentication type, CHAP or PAP which the TC does not allow you to select AFAIK.. some ISP do not give enough time to get the router to switch on auto to the correct authentication method.
    In the end run the modem as router and bridge the TC. It will work just as well for most installations in bridge as the modem in bridge.

  • How do I make the column portion of a relative cell reference change based on a separate cell

    I have a relative cell reference K8  in a formula (k8/c8) and I want to obtain the column portion (K) of this relative cell reference from another cell at the top of the column this formula is in. This will make it very easy for me to change many formulas
    all at once simply by changing the contents of the header cell to reflect the column that I want to reference in the original formula. For instance the other cell may contain the letter M which would then change all of the formulas to m8/c8.
    I know I can change on cell and copy the formula to the other cells but then I have to do a copy and format paste to get all of my unique formatting back. The original formula frequently change with respect to the columns being measured.
    Thank you...even if I can't get there from here.

    Let's say that cell A1 contains the letter K, and that your formula is in a cell in row 8. You can change the formula to
    =INDIRECT($A$1 & ROW()) / INDIRECT("C" & ROW())
    This formula can be filled down (or up).
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Is it possible to copy and paste a formula without changing the cell references?

    I am trying to paste a formula to a cell adjacent to where it currently is but when I do, the cell references in it change. I am trying to get exactly the same formula in the cell (without re-typing it).

    dedwards96 wrote:
    Just another quick question, is it possible to make a large number of cell references 'absolute'?
    Individual cell references in formulas may have four distinct states: relative, absolute column, absolute row, or absolute column and row. These are set using the popup menu on the reference itself. Click on the reference in the formula and choose one of the four states from the popup menu.
    Once set, you can fill the formula into the rest of a column or row using the Fill Handle (small circle at the lower right of a selected cell). Cell references in the new copies of the formula will remain absolute or adjst to their new position dependent on the setting for each reference. You can also copy and paste the cell (single click to select it, command-C to copy) with the same results.
    You can also copy/paste without changing the formula's cell references if you select the formula (Drag across the formula in the entry bar, copy, press tab to deselect and reconfirm the formula in the original cell) rather than the cell. Pasted into a new cell, the formula will appear as if you typed it in exactly as it was in the original cell—neither absolute references nor relative references will have changed.
    Regards,
    Barry

Maybe you are looking for

  • Error while extracting ODS data using Infospoke

    Hello Gurus, I am not able to extract any ODS data using Infospoke. Let me describe the step by step process: I have created one infospoke for ODS data and i am selecting a 'File' option in the destination tab of infospoke. We are trying to land this

  • Macbook Pro shutdowns unexpectedly

    I bought my 15inch core i7 Macbook pro about 8 months ago from US... in the last 20-25 days a problem showed up... The screen of my laptop just goes black but the keyboard light stays on..after i turn it off pressing the power button there is also a

  • Can't login to Server management app

    I installed Lion server this evening and I was able to access the Server management app. However just recently I'm no longer able to connect. Even the dashboard server widget doesn't display any info and just says "network error". The only thing I ca

  • Find Java Classes

    As we know that during run time JVM will load all the class files that we have set in the CLASSPATH. For instance: My CLASSPATH was ".:c:\javaprogram;c:\javaprogram2\sub1;c:\javaprogram3 and I have a class called myclass.class which store in c:\javap

  • Change security policy on passthrough proxy-service?

    I've an business-service which is secured by a OWSM policy. The business-service is exposed as a proxy-passthrough (a long with the OWSM policy). Is it possible to change the security policy for the proxy-service (which is exposing the OWSM policy se