Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have created a spreadsheet with about 6 tabs. Often data on tab 1worksheet
is found again on tab 2,3,5,6. I would like this data to be auto filled so that changes only need to be made on the first tab. the change will then be updated to the other corresponding cells with the new data without having to enter it onto each tab. The other tabs will then be protected so the value can only be changed on the first tab. Thank you Martin |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Martin
You can link the master cells to the other sheets by selecting a cell on the master sheet and Copy. Switch to other sheet and select a cell then EditPaste SpecialPaste Link. Once done, you can set the cell properties on other sheets to locked and protect the sheets. User cannot edit the cell, but the linked formulas will work. Gord Dibben MS Excel MVP On Fri, 5 Oct 2007 12:37:02 -0700, Martin wrote: I have created a spreadsheet with about 6 tabs. Often data on tab 1worksheet is found again on tab 2,3,5,6. I would like this data to be auto filled so that changes only need to be made on the first tab. the change will then be updated to the other corresponding cells with the new data without having to enter it onto each tab. The other tabs will then be protected so the value can only be changed on the first tab. Thank you Martin |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You can use VLOOKUP for this. Assume the data you want to match is in
column A on all sheets, that you have 6 columns of data, and 100 rows in Sheet1. Then in your subsidiary sheets you can enter this in B1: =VLOOKUP($A1,Sheet1!$A$1:$F$100,COLUMN(B1),0) and it will return the data from column B of Sheet1 corresponding to an exact match in column A to the value in A1 (the data does not have to be sorted). You can then copy this formula across into C1:F1 to get the other items of data. Then you can copy B1:F1 down the rows as necessary. Note that if there is not an exact match with data items in Sheet1 the formula will return #NA, though there are ways of dealing with this. Hope this helps. Pete On Oct 5, 8:37 pm, Martin wrote: I have created a spreadsheet with about 6 tabs. Often data on tab 1worksheet is found again on tab 2,3,5,6. I would like this data to be auto filled so that changes only need to be made on the first tab. the change will then be updated to the other corresponding cells with the new data without having to enter it onto each tab. The other tabs will then be protected so the value can only be changed on the first tab. Thank you Martin |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Suggestion : Auto fill , Formating and Sorting of Tabs | Excel Discussion (Misc queries) | |||
Auto Fill a row of cells | Excel Discussion (Misc queries) | |||
Auto Fill workshseet tabs? | Excel Discussion (Misc queries) | |||
Auto Populating cells from a master spreadsheet | Excel Discussion (Misc queries) | |||
Auto fill in cells | Excel Worksheet Functions |