Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a spreadsheet with a list of codes on separate tabs, each tab
is named according to its category . On the last tab I have a list containing of ALL the above codes. I want a formula to look at all of the tabs (apart from the final one) and return the category for each code next to the relevant code in the list on the last tab. The end result is that each code in the complete list will have the correct category next to it. Any help appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I think I have a similar problem. I have a single (large) workbook, with multiple worksheets (all same layout and format). These multiple sheets show data being returned from multiple sources. I have to cross-check another sheet of unique reference numbers to see if they exist in any of the multiple sheets. I've been using the VLOOKUP function with success, but to do this I have been consolidating (Using cut & paste) the multiple sheets into one. The multiples are getting larger and larger (over 15 sheets) now. Is there a way of searching for a cells contents (lookup_value) across multiple data sources (Table_array across multiple sheets) and returning a result (or even a #N/A - at least I'd know if the unique ref exists!). If there's another function other than VLOOKUP then I'm happy to adapt! L. " wrote: I have a spreadsheet with a list of codes on separate tabs, each tab is named according to its category . On the last tab I have a list containing of ALL the above codes. I want a formula to look at all of the tabs (apart from the final one) and return the category for each code next to the relevant code in the list on the last tab. The end result is that each code in the complete list will have the correct category next to it. Any help appreciated. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If codes are integers in column A of sheets 1-3 try filling down:
=MATCH(2,1/(FREQUENCY(A2+1,Sheet1:Sheet3! A:A)FREQUENCY(A2,Sheet1:Sheet3!A:A))) This gives the relative position of the value across the sheets. From this you can infer the sheet e.g. if each sheet contains 10 IDs a value of 25 would indicate the fifth row of the third sheet. To check for duplicate values you could fill down: =INDEX(FREQUENCY(Sheet1:Sheet3!A:A,A2-{1,0}),2) On 5 Jun, 12:54, LeeM wrote: Hi, I think I have a similar problem. I have a single (large) workbook, with multiple worksheets (all same layout and format). These multiple sheets show data being returned from multiple sources. I have to cross-check another sheet of unique reference numbers to see if they exist in any of the multiple sheets. I've been using the VLOOKUP function with success, but to do this I have been consolidating (Using cut & paste) the multiple sheets into one. The multiples are getting larger and larger (over 15 sheets) now. Is there a way of searching for a cells contents (lookup_value) across multiple data sources (Table_array across multiple sheets) and returning a result (or even a #N/A - at least I'd know if the unique ref exists!). If there's another function other than VLOOKUP then I'm happy to adapt! L. " wrote: I have a spreadsheet with a list of codes on separate tabs, each tab is named according to its category . On the last tab I have a list containing of ALL the above codes. I want a formula to look at all of the tabs (apart from the final one) and return the category for each code next to the relevant code in the list on the last tab. The end result is that each code in the complete list will have the correct category next to it. Any help appreciated.- Hide quoted text - - Show quoted text - |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try instead of the first formula above:
=MATCH(2,1/(FREQUENCY(A2+{-0.1,0,0.1},Sheet1:Sheet3!A:A)=2)) On 5 Jun, 12:54, LeeM wrote: Hi, I think I have a similar problem. I have a single (large) workbook, with multiple worksheets (all same layout and format). These multiple sheets show data being returned from multiple sources. I have to cross-check another sheet of unique reference numbers to see if they exist in any of the multiple sheets. I've been using the VLOOKUP function with success, but to do this I have been consolidating (Using cut & paste) the multiple sheets into one. The multiples are getting larger and larger (over 15 sheets) now. Is there a way of searching for a cells contents (lookup_value) across multiple data sources (Table_array across multiple sheets) and returning a result (or even a #N/A - at least I'd know if the unique ref exists!). If there's another function other than VLOOKUP then I'm happy to adapt! L. " wrote: I have a spreadsheet with a list of codes on separate tabs, each tab is named according to its category . On the last tab I have a list containing of ALL the above codes. I want a formula to look at all of the tabs (apart from the final one) and return the category for each code next to the relevant code in the list on the last tab. The end result is that each code in the complete list will have the correct category next to it. Any help appreciated.- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding numerical values based on multiple values in another column | Excel Worksheet Functions | |||
Can i set up tabs within tabs on Excel? | Excel Worksheet Functions | |||
Advanced Filter for Values in Column M greater than Values in Colu | Excel Discussion (Misc queries) | |||
Can you copy multiple tabs from formulas to values w/o paste spec? | Excel Worksheet Functions | |||
Adding Values From Different Tabs | Excel Discussion (Misc queries) |