Here is my scenario. I have 22 locations (cols A:V), and 400 unique physical items. As it is laid out currently:
As can be seen, this is ideal for knowing which item is located in which "bin" (location). Each Column is sorted alphabetically (as each Item # has a unique name).
However, when we want to find a particular item, there is no easy way, short of reading through all 22 locations (which subject to expand and contract).
So on tab 2, I created a sequential list of all the item numbers (Col A) and their locations (Col B). To date, I have had to copy these lists manually. This isn't hard, and not time consuming when creating an entire list, but these items are subject to move locations - frequently - and the number of locations is subject to change as well. So when I make a change on tab 1, I manually have to change all the items on tab 2.
My basic question is how can I populate the list on the second tab automatically from the changes made to the first tab.
I have gotten close with some vlookups and index functions, but I am missing something basic. This shouldn't be a dificult task, but for some reason, I am not finding a simple solution. Any help is greatly appreciated.
Thanks in advance.
BTW, this information is coming from an external database, and can't be sorted before export. So, there needs to be an EASY way to move this data (i.e. copying a function from cell to cell - as opposed to something more convoluted through VBA).
Code:
LocA LocB LocC LocD
Item1 Item8 Item14 Item22
Item2 Item9 Item15 Item23
Item3 Item10 Item16 Item24
Item4 Item11 Item17 Item25
As can be seen, this is ideal for knowing which item is located in which "bin" (location). Each Column is sorted alphabetically (as each Item # has a unique name).
However, when we want to find a particular item, there is no easy way, short of reading through all 22 locations (which subject to expand and contract).
So on tab 2, I created a sequential list of all the item numbers (Col A) and their locations (Col B). To date, I have had to copy these lists manually. This isn't hard, and not time consuming when creating an entire list, but these items are subject to move locations - frequently - and the number of locations is subject to change as well. So when I make a change on tab 1, I manually have to change all the items on tab 2.
My basic question is how can I populate the list on the second tab automatically from the changes made to the first tab.
I have gotten close with some vlookups and index functions, but I am missing something basic. This shouldn't be a dificult task, but for some reason, I am not finding a simple solution. Any help is greatly appreciated.
Thanks in advance.
BTW, this information is coming from an external database, and can't be sorted before export. So, there needs to be an EASY way to move this data (i.e. copying a function from cell to cell - as opposed to something more convoluted through VBA).