Cell references to other tables, keep from changing

Here's what I am trying to do. I have two tables, in two sheets. Sheet 1::Table 1 and Sheet 2::Table 2.
The cells in Table 2 are all referenced to cells in Table 1 (with a formula that looks like =Table 1::X7).
I want to be able to move the rows in Table 1 around but have the formulas in Table 2 not change their reference. Now it seems they follow along. So the reference in Table 2 is =Table 1::X7 and I move row 7 in Table 1 so that it becomes row 6, my reference in Table 2 changes to =Table 1::X6. I don't want it to change. Changing the reference from relative to absolute doesn't seem to change this.
Any suggestions?
Thanks! Brian

"I looked at INDEX and OFFSET but from what I can tell they don't accept a parameter for a different table."
OFFSET's base can be set as a cell on a different table. If that cell is in a Header row, it will not be included in sorts of the table, so in many cases cell A1 is chosen as 'base' (with row 1 set as a Header row), and offsets are calculated from that cell.
The example below shows results using OFFSET in columns B and C, and INDEX and OFFSET in column D, all of Table 2, to retrieve values from column X of Table 1. The yellow-filled row on Table 2 retrieves the values from the same cell as your =Table 1::X7 formula above. X7 is in the green filled row of Table 1.
The second pair of tables shows duplicates of the same pair of tables. Table 1 in this row has been sorted on the values in column B. Note that what was Row 7 of Table 1 is now Row 4 (although it is still labeled Row 7 in column A). Table 2 has not been sorted. The yellow-filled row is still in the same position and the formula in each of the three cells remains the same as it was in the first version of the table. The value retrieved is from cell X7 on the sorted Table 1.
Formulas (all in Table 2, entered in row 2, then filled down to row 10):
B2: =OFFSET(Table 1 :: $A$1,ROW()-1,23)
C2: =OFFSET(Table 1 :: $X$1,ROW()-1,0)
These two are pretty much the same.
The first uses A1 as the base, and requires a column offset of 23 steps to arrive at column X.
The second uses X1 as the base, and requires a column offset of 0 to remain in column X.
The row offset for both is set by the row in which the formula resides. ROW() returns the row number, from which 1 is subtracted to give an offset from row 1 of one step less than the row number of the formula's position.
D2: =INDEX(OFFSET(Table 1 :: $X$1,0,0,ROWS(Table 1 :: $X)),ROW())
This one uses OFFSET's ability to capture several values in an internal array, triggered here by adding a fourth argument to the function ( ROWS(Table 1::$X) ), to define the row-range as 'all of the rows in column X'. The values are extracted using INDEX.
Although INDEX has its uses, here I think it is redundant, and would use either of the two previous examples.
Regards,
Barry

Similar Messages

  • Windows 2012 R2 / Windows Essentials Role. How to keep from Changing DNS.

    So I have asked this question in the windows 2012 Server board and was directed to try it here in the essentials.
    that existing thread is here >>
    http://social.technet.microsoft.com/Forums/en-US/11cfbc1b-0001-42d6-85c1-304d1e450679/windows-2012-r2-windows-essentials-role-how-to-keep-from-changing-dns?forum=winserver8gen
    now to the question
    Ok so I will describe my problem as best as I can.
    I have 2 Servers Both 2012 R2 Standard 1 is Primary Domain controller and one is the Secondary Domain controller. I had everything set up on the domain and the Primary Domain controller was set up as the DNS on ALL clients (Static).
    Recently I set up the secondary domain controller with Essentials. All went well I added all the clients to connect with Essentials. a few days went by and now all of a sudden all the Static DNS's are all changed to the Essentials box.
    This Really wouldn't be a problem to me except the performance level of that DNS is EXTREAMLY slow. I run to all clients and change the static back and everything works great. then a little while goes by and all DNS's are again to the Essentials box.
    SO my question would be. Is there any way to configure the Essentials box to stop redirecting the DNS to itself and keep the Primary domain controller as the DNS

    Hi Curtis_bob,
    I noticed that Olaf had provided
    KB2862551 in the old thread. Just check if Olaf’s suggestion can help you to solve this issue.
    If this issue still exists, would you please let me confirm whether has also installed DNS server role on the
    Windows Server 2012 R2 Standard (with Windows Server Essentials Experience role)?
    If any update, please feel free to let us know.
    Best regards,
    Justin Gu

  • How do I prevent other Mac users from changing my Airport Extreme Network Name and Password within the Airport Utility?

    How do I prevent other Mac users from changing my Airport Extreme Network Name and Password within the Airport Utility?  My company is using an Airport Extreme in our office now and I want to prevent other employees from messing with the network/settings.  Is there a way to place a password on the settings to allow only the admin to access the network name and password? 

    Hi - you have will have to change the device passwords on all the base stations and then don't give them to anyone except the administrators and tell them not to save them on their computers that use the older versions of the Airport Utility - for the newer versions like the mobile apps, as soon as you enter the pasword it is saved and is visible in the advanced pane along with the network password - so if anyone gets a hold of your iPad or iPhone, they can edit the whole network - I have this same issue with my networks in the office and it is inconvenient but doable - I hope this helps

  • 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!

  • How to export a reference to a table line from a method?

    Hello,
    I have a class which has a hashed table as an attribute. I want to retrieve a line from the table using the key and return a reference to the table line. I want changes to the return value of the method to be directly reflected in the table, as if using a local field symbol. I have tried to approaches, neither of which works.
    First, I returned a reference to the local field symbol. This dumps, because after returning from the method call, the target of this reference no longer resides on the stack.
    Second, I have tried using an export parameter marked as "pass by reference", i. e. without VALUE(). Strangely, this still seems to give me only a copy of the data.
    What is the correct way to proceed?
    Illustrative pseudo-code follows.
    Thanks, Sebastian
    *==============================================================
    *Possibility 1: (using references)
    DATA mt_key_map TYPE zt_entity. " member variable (hash table of zs_entity)
    METHODS get
        IMPORTING
          !is_key TYPE zs_key
        EXPORTING
          !er_vt TYPE REF TO zs_entity.
    METHOD get.
      FIELD-SYMBOLS: <fs_vt> TYPE zs_entity. 
      READ TABLE mt_key_value WITH KEY key = is_key ASSIGNING <fs_vt>.
      GET REFERENCE OF <fs_vt> INTO er_vt.
    ENDMETHOD.     
    " Client Code:
      FIELD-SYMBOLS: <fs_vt> TYPE zs_entity. 
      CALL METHOD get
        EXPORTING
          is_key        = is_key
        IMPORTING
          er_vt         = lr_vt.
      ASSIGN lr_vt->* TO <fs_vt>.  " will dump, because the local field symbol
                                   " to which lr_vt points is no longer on the stack
      <fs_vt>-value = 'newdata'.       
    *==============================================================
    *Possibility 2:  (using a structure passed by reference)
    DATA mt_key_map TYPE zt_entity. " member variable (hash table of zs_entity)
    METHODS get
        IMPORTING
          !is_key TYPE zs_key
        EXPORTING
          !es_vt TYPE zs_entity.  
    METHOD get.
      FIELD-SYMBOLS: <fs_vt> TYPE zs_entity. 
      READ TABLE mt_key_map WITH KEY key = is_key ASSIGNING <fs_vt>.
      es_vt = <fs_vt>.
    ENDMETHOD.   
    " Client Code:
      DATA: ls_vt TYPE zs_entity.
      CALL METHOD get
        EXPORTING
          is_key        = is_key
        IMPORTING
          es_vt         = ls_vt.
      ls_vt-value = 'newdata'.   " will not change the contents of the
                                 " table mt_key_value       

    In the first approch, try to change the exporting parameter type REF TO DATA.
    Try like:
    CLASS lcl_test DEFINITION.
      PUBLIC SECTION.
        DATA: t_mara TYPE HASHED TABLE OF mara WITH UNIQUE KEY matnr.
        METHODS:
          constructor,
          get
            IMPORTING
              if_matnr TYPE matnr
            EXPORTING
              ea_mara  TYPE REF TO data.
    ENDCLASS.                    "lcl_test DEFINITION
    START-OF-SELECTION.
      DATA: lo_test TYPE REF TO lcl_test,
            lr_data TYPE REF TO data.
      FIELD-SYMBOLS: <fa_mara> TYPE ANY,
                     <f_field> TYPE ANY.
      CREATE OBJECT lo_test.
      lo_test->get(
        EXPORTING
          if_matnr = '000000000077000000'   " << Replace Your Material
        IMPORTING
          ea_mara  = lr_data ).
      ASSIGN lr_data->* TO <fa_mara>.
      ASSIGN COMPONENT 'ERSDA' OF STRUCTURE <fa_mara> TO <f_field>.
      <f_field> = space.
      WRITE: 'Done'.
    CLASS lcl_test IMPLEMENTATION.
      METHOD constructor.
        SELECT * INTO TABLE t_mara
               FROM mara
               UP TO 10 ROWS.
      ENDMETHOD.                    "constructor
      METHOD get.
        FIELD-SYMBOLS: <lfs_mara> LIKE LINE OF me->t_mara.
        READ TABLE me->t_mara ASSIGNING <lfs_mara> WITH KEY matnr = if_matnr.
        GET REFERENCE OF <lfs_mara> INTO ea_mara.
      ENDMETHOD.                    "get
    ENDCLASS.                    "lcl_test IMPLEMENTATION
    Regards,
    Naimesh Patel

  • Column references to other tables.

    Hi,
    Is there a script out there that specifies all column/dependecies for a table.
    Eg
    TABA has a column COL1.
    I need to know all the other tables that reference TAB.COL1.
    Thanks.
    N

    something like this ?
    select
    d.column_name
    ,d.owner
    ,d.table_name
    ,c.column_name
    ,c.owner
    ,c.table_name
    from
    user_cons_columns c
    ,user_cons_columns d
    ,user_constraints b
    where
    b.constraint_type = 'R'
    and d.table_name = '&your_table'
    and d.column_name = '&your_column'
    and c.constraint_name = b.constraint_name
    and b.r_constraint_name = d.constraint_name
    and c.position = d.position
    order by c.position

  • Referencing (?) cells to an other table

    Hello,
    I try to explain what i like to have:
    I want to have a connection from one cell in f.e. table A to one cell in table B. The value of the cell in table A is a calculated value, f.e. a summary. Now this value should appear in the cell on sheet B, always live (?).
    In Excel ist was something like "Create connection" (?)...
    Uhhh, I hope you undestood me, and someone can help me.
    Thanks
    Claus

    Whau!
    Thats much too easy for me .
    Thanks a lot.
    Strange, strange...
    A happy Claus

  • How can I keep Tuvalo or other invasive sites from changing my homepage?

    Why can't Firefox add a simple opt-out question or password-protection for changing the homepage?
    "X is trying to change your homepage to X.com. Allow? Y/N"
    After you add that, add: "Permanently block access by X.com. Y/N"

    Websites do not have permission to change your home page. If you find it is getting switched, consider the possibility that you've somehow installed a rogue extension.
    Try this:
    Disable ALL nonessential or unrecognized extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable. (Or if it's clearly badware, remove.)
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Does that let you restore your home page?
    A few related issues:
    (1) If there is no remove button for an extension, visit the Windows Control Panel. In Windows Vista-7, the relevant dialog is "Uninstall a Program"; not sure what it is called in Windows 8.1. Clicking the "Installed on" column heading will sort by date and help uncover possible bundled items that you didn't know were being installed. Remove all the crap you can. (If you find anything named Search Protect or BrowserSafeguard, remove it.)
    (2) Third party software can create a file named user.js that Firefox reads at startup and which will override your saved settings from your previous session. This article describes how to track down and remove that file if you have one: [[How to fix preferences that won't save]].
    (3) Some utilities such as Advanced SystemCare have a feature to roll back your settings changes, which can lock in unwanted settings. Theirs is called Surfing Protection. If you have that or a similar Homepage Protection (etc.) setting preventing you from making desired changes, turn it off temporarily (or permanently).
    (4) To mop up unwanted software, try the scanners other Firefox users have found helpful in this article: [[Troubleshoot Firefox issues caused by malware]].
    Hopefully that will tame it.

  • Need a formula to calulate multiple cells and add the sum total to a cell in a other table

    Im a chef and my monthly inventory is a time consuming task. I get invoices from multiple suppliers on each day of the week. I enter them into a spread sheet and then need to add the sum total for all the invoices for say MONDAY. That total needs to be entered into a cell in another table  called "daily spend". Is there a formula to automatically add say all the invoices from monday and input the daily spend cell on that table. Here is an example
    I created a column B-to give each day a number(sometimes multiple invoices come from the same supplier for each day)<GREEN>..If there was a way to do this differently...Im happy to change the layout of the spreadsheet.  I want to add the total $ (column F)  for each day together(all the blue fields) and then insert the total into another cell seen in the next  table .  So in this example its F4+F16+F17=?, ? inserted into N2 of the next table
    Thanks so much

    "I ve finally has a play with the advice you gave me but I have realized that the formula you gave me is for a week....and like I mentioned in my reply to you, one table is weekly the other is monthly....is there a way to overcome this? (my answer to you explains it)"
    Hi Gavin,
    Unfortunately, the scale of your illustrations in that reply made them difficult (or impossible) to read, even on the Retina screen.
    The first formula, used to fill column B, extracts the Weekday number for each date. Since these numbers should be equivalent to the day of the month, You'll need to replace this with a formula that returns the Day value of each date:
    Old:
    B2: =WEEKDAY(A,2)
    New:
    B2: =DAY(A)
    Fill down to end of column.
    Because of the arrangeent of your Data table, you will need to repeat this formula in column H (with references to column G), etc. for each set of dates in the table.
    The SUMIF formula in column F is fine as is, except that it assumes all condition data will be in column B of Data, and all data to be summed will be in column F of Data. Since this is obviously not the case for your Data table, you will need a separate iteration of the formula for each week in the table, with the four SUMIF statements enclosed in a SUM statement:
    E2: =SUM(SUMIF(Data :: $B,A2,Data :: $F),SUMIF(Data :: $H,A2,Data :: $L),SUMIF(Data :: $N,A2,Data :: $R),SUMIF(Data :: $T,A2,Data :: $X))
    Fill down for as many rows as there are days in the month being summarized.
    Column references in the formula assume that six columns are used for each week, and that there is no gap in the table between weeks.
    Note that the formula does not distinguish between transactions on July 7 and those on June 7 or August 7. Because of this, the Data table must be limited to transactions in a single calendar month.
    Regards,
    Barry

  • Open references of other list items from a list item in the same window or tab

    Hi there,
    We have migrated from lotus notes to sharepoint. We have converted the lotus notes forms to sharepoint forms. Basically the list items are pages and there are links of other pages in a page.
    My problem is I want to open the other pages in the same tab or window and not in a separate window.(currently the links open in a separate window which is not the requirement.)
    In terms of sharepoint I would say,
    I have references(links)  to other list items of the list in a single list item. I want to open the other list items in the same window (tab).
    How can we achieve this?? If possible without much codes??
    Please suggest.
    Any help will be highly appreciated.
    Thanks in advance

    See:
    *http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    For links opened via JavaScript you can look at this pref:
    *http://kb.mozillazine.org/browser.link.open_newwindow.restriction
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • Cell Reference in Query Designer

    Dear Experts
    I am using cell definitions in my report I used Selections and Formulas in a cell.
    Now i want to use cell reference,
    can any one provide step by step procedure for creating cell reference in a query designer.
    Regards
    Supraja.K

    Hi,
    Define Cell References
    To define a cell in the table as a reference for subsequent use in formulas, select the cell and choose New Cell Reference in the context menu.
    Give the cell reference a unique description (Column Name/Row Name for example) so that it can be quickly identified. Change the description in the Properties of the Selection/Formula dialog.
    The cell reference is flagged in the table using the  symbol.
    Define Changes to Basic Key Figures
      1.  To calculate changes to the basic key figures, place the cursor in the relevant cell, choose New Formula from the context menu and define the cell using the cell references as operands.
    Define the formulas for the cells in the Reporting Period column as follows:
    Reporting Period / <Key Figure from the Rows> - Comparison Period / <Key Figure from the Rows>
    Define the formulas for the cells in the Comparison Period column as follows:
    Comparison Period / <Key Figure from the Rows> - Second Comparison Period / <Key Figure from the Rows>
       2.  Give the formulas a unique description (Column Name/Row Name for example) so that they can be quickly identified. Change the description in the Properties of the Selection/Formula dialog.
    The formulas are flagged in the table using the  symbol.
    Define Cells...
    You can define formulas and selection conditions explicitly for cells in queries with two structures. In this way you can override the cell values that are created implicitly from the intersection of the structure components. This function allows you to design much more detailed queries.
    Define Cells... is only available for queries with two structures. For queries with only one structure, the symbol is deactivated.
    If one or more exception cells have been defined for a query, this is shown by the  symbol on the status bar of the Query Designer.
    New cell reference
    You can use any cell that you define in a formula. If you want to reuse the value from the implicit, generic cell definition that is automatically created at the intersection of the two structural components of a query, select this cell in the Cell Definition dialog box and, using the secondary mouse button, choose New Cell Reference. A description taken from the two structural components now automatically appears in the cell. The  symbol shows you that a cell reference exists for this exception cell. You can now reference to this cell. That is, you can reuse the implicit cell definition and do not have to create these values manually in a new selection.
    Regards,
    Marasa.

  • Can a subquery hosted within a table reference that hosting table?

    I have a large table that tracks Orders and Deliveries ("OrderAssign"). The OrderID column has a dropdown with a query that references some other tables that cover order details, like when each Order is due.
    I'd like the dropdown query to only display order details for Orders that haven't been filled ("OrderAssign.Filled = 0"). The problem, I think, is that this would mean the query would reference the table that hosts it. Is this possible? I tried
    to set up a test case, and got a generic syntax error I've seen many times before when the syntax is correct, but I'm using a SQL structure that Access doesn't like. 
    This table is linked to SQL, so I could also write a SQL view or function if that makes a difference.
    I'm using Access 2010. Thanks!
    EDIT: Huh, so I figured out a way, I think. I created a SQL view that filtered the records the way I wanted; then used the Linked Table Manager to create a linked view; then used that linked view in my dropdown subquery.
    So I guess my follow up question to this is: is there any reason I SHOULDN'T do this? Will there be any issues with existing records in the table whose values will no longer show up in the constraining dropdown subquery?
    EDIT 2: And I think I found the deal breaker. The field doesn't display the first column with the "real" info, the ID#. It displays the second. Once you add a query that doesn't display every row in the table, that query no longer has results to
    display for the filtered records. So some of the records display the "real" info, which the users don't want to see, and the open records show the second field. Messy.
    hydrogonium

    I might not be using the right terminology. I have a lot of experience with SQL Server, relatively little with Access. I am doing this for a client who is used to entering data directly into the table, and wants minimal changes. However, the dropdown literally
    has thousands of entries, which could be pruned by ~80% if filled orders are filtered out.
    The table has "dropdown subqueries" (probably not the right term), which were created like so:
    - Go to the Design tab.
    - Click on the field you want to modify.
    - Go to the lookup tab.
    - Change the Display Control to 'Combo Box'
    - Change the Row Source to a query, in my case, 'SELECT * FROM LinkedSQLView'
    - Format the list as you want it displayed; in my case, the actual ID# is hidden in the first column, and the other ten columns are displayed.
    The fields in question are:
    - OrderRequestID (Number on Access / Int on SQL Server) - has a dropdown.
    - OrderFillID (Number on Access / Int on SQL Server) - has a dropdown.
    - OrderFilled (Yes/No on Access / Bit on SQL Server).
    Purpose / Background: This table is basically a clearinghouse for entities making orders and other entities filling them. My client sits in the middle and matches everything up. It can get very complicated, because different products qualify for different
    orders, and the amount supplied can be smaller or greater than an individual order.
    hydrogonium

  • How to use cell contents to indirectly reference other tables?

    I think I need to use the INDIRECT or ADDRESS function here, but I just can't seem to structure it right. Does anyone have ideas?
    I have a model that uses multiple tables, and I want to be able to enter table names, column names and row names into a new table, and for it to go and look up the right value in that TABLE::ROW NAME, COLUMN NAME.
    In more detail: I have a table called SITES that has columns called Site1, Site2 etc, and rows of information such as Name, Phone, etc. I also have a whole series of tables called OPTION1, OPTION2 etc etc, which also have multiple columns for Site1, Site2 etc, and then rows of different information for each site, labelled Alt1, Alt2, Alt3 etc.
    What I want to do is create new tables for reports, where I can enter eg OptionN in one cell, SiteN in another, and for that table to lookup the value of table OptionN::SiteN AltN. I need this to be built into the formulae partly for data integrity purposes eg, if the table shows Site1 name, and Option1, I need to be certain that the information in that table truly reflects Site1 and Option1 information, and also because I want to be able to create some simple whatif comparisons by changing a table from say Option1 to Option2 and seeing the difference.
    So far, I have tried entering OptionN in A1 of the new table, and SiteN in B1, butI can't find a formula that will then go to table OptionN (A1) and lookup eg SiteN (B1), AltN. The AltN term would be written into the formula rather than referenced from another cell such as C1. I've tried the following sort of thing - none work:
    =&A1 &"::" &B1 &"AltN"
    =INDIRECT(A1&"::"&B1&"AltN")
    =INDIRECT(ADDRESS(AltN,B1,,,A1))
    I'd be very grateful for any help, as the ability to create tables that will lookup info from elsewhere using contents of its own cells will transform Numbers for me from a novelty to a seriously useful tool.
    Message was edited by: MrJim

    MrJim wrote:
    I've tried this, but it doesn't seem to work for non-numeric values. If $C was the name of a Header row, eg Mot, instead of a number then it doesn't seem to work.
    James,
    Here's a primitive example that, I believe, in your words "will transform Numbers for me from a novelty to a seriously useful tool".
    In the Result column we have the nice little expression: =INDIRECT(Site&" "&Alt). You should be able to take it from there.
    That's it.
    Jerry
    Edit: This presumes that you have gone to the Numbers Preferences and selected Use Header Names as References.

  • My cell references have changed from coordinates to header names in numbers

    When i opened a SS i have been using for quite some time to add new data, I noticed the cell references in some cells had changed. Originally all had been cell coordinates and now most, but not all, are using header names. I've tried re-entering the data, filling down from a cell that still shows coordinates. Nothing works to get them back to using coordinates. Any ideas on why this happened and how to change things back?    
    Message was edited by: annmerb    Reading another post I got a hint to check Numbers Preferences. I know I had never gone in and checked "Use header names as references" but it was selected. I deselected it and references went back to coordinates. Since Had never changed the Preferences I hadn't thought to check there. Sorry to bother!

    Ann,
    The default in the Blank Template is for Header Named cell references turned off. However, that may not be the case with all the other templates. Do you recall how this document began its life?
    Jerry

  • Why does Lion KEEP reversing changes you make in address book and other applications without your consent and without wanting it to??? Plus address book will NOT import old address book contacts from Snow Lepoard 10.6 and keep them.  This Lion OXS 7 is ..

    Why does Lion KEEP reversing changes you make in address book and other applications without your consent and without wanting it to??? Plus address book will NOT import old address book contacts from Snow Lepoard 10.6 and keep them.  This Lion OXS 7 is .. becoming very frustrating ... it will NOT keep changes made in the Address Book and it has destroyed my contacts which I only have electronically since 10.4 in my address book. I am NOT happy with this OS7 it has a lot of issues and faults.  How can one stop automatic reversing of data when inputting???
    Please help! 
    Wished I NEVER upgraded to this Lion!!!
    Carmelo

    Relax. Your address book database is corrupted.
    If you are syncing your Contacts with MobileMe or something else, disable it for now.
    Backup your address book by going to File>Export>Address Book Archive.
    Quit Address Book.
    Open your Library by holding down the Option (alt) key while selecting the Go menu in Finder. Select Library. Navigate into your Application Support/AddressBook folder and delete the addressbook-v22.abcddb file.
    Open Address Book. It will recreate the database from the raw data.
    See how that works. If it is ok, then reenable syncing and see how that works.

Maybe you are looking for

  • How to change the background color of a sequence?

    I'm using Premiere Pro CS5 on Win7 x64.  I've imported a JPEG that's a different size than my 1920 x 1080 frame.  The background of this JPEG is white, but the background of the sequence is black (by default), so the borders of the JPEG make it stand

  • ITunes doesn't open...PleaseHelp!

    My iTunes stopped opening..I have read all the help things but I don't get an error message it just won't open..I have my iPod plugged in adn it is charging I just can't get in iTunes but I have all my songs. Please try to help me! I think I must hav

  • How to create a BDC program for given recording.

    i have to create a BDC program for uploading a file. currently i am using call function   CALL FUNCTION 'F4_FILENAME'

  • Upgrade IDS (4.1- 5.1)

    How to upgrade my IDS 4215 from v4.1 to v5.1? Does my ciscowork be upgraded at same time? Thanks

  • Subquery not working in 11g

    Hi all, We have an 11.1.0.7 instance on SLES10. And when we run following sql, it crashes. select decode(sum(pos),0,'H',decode(sum(hareket),0,'P','T')) from (select count(1) pos,0 hareket from cost.pos_hareket p where p.onay_eh='E' and p.is_merkez_ko