S
skyboy
Hello everyone,
I have a problem that I need to find a solution for. I have a list o
all the stores with a particular trait that carry my at least one of m
items. Then, I have a list for each item with all the stores tha
carry that particular item. What I want to do is sort this data s
that the store numbers under each item are matched up with th
corresponding store numbers in the master store list. I'll give you a
example of the problem.
Here is what the data looks like now:
Master Item 1 Item 2 Item 3 Item 4
1 2 3 1 3
2 4 2 4
3 4
4
And here is what I would like it to look like when I'm done:
Master Item 1 Item 2 Item 3 Item 4
1 1
2 2 2
3 3 3
4 4 4 4
This way I can easily -see- which stores carry which items. I shoul
note that not all of the stores under each item are in the master lis
- these I would like to filter out.
Is there a way to do this without going through each list and matchin
it up with the master list manually? This has become a very tim
consuming project that I am required to do over and over again wit
different traits, and I would appreciate it if someone could help me.
Thank you for your time,
Skybo
I have a problem that I need to find a solution for. I have a list o
all the stores with a particular trait that carry my at least one of m
items. Then, I have a list for each item with all the stores tha
carry that particular item. What I want to do is sort this data s
that the store numbers under each item are matched up with th
corresponding store numbers in the master store list. I'll give you a
example of the problem.
Here is what the data looks like now:
Master Item 1 Item 2 Item 3 Item 4
1 2 3 1 3
2 4 2 4
3 4
4
And here is what I would like it to look like when I'm done:
Master Item 1 Item 2 Item 3 Item 4
1 1
2 2 2
3 3 3
4 4 4 4
This way I can easily -see- which stores carry which items. I shoul
note that not all of the stores under each item are in the master lis
- these I would like to filter out.
Is there a way to do this without going through each list and matchin
it up with the master list manually? This has become a very tim
consuming project that I am required to do over and over again wit
different traits, and I would appreciate it if someone could help me.
Thank you for your time,
Skybo