Hi, after I have filled a database with data, I have to manually compile a list in the following manner.
Let’s say I have a small example database like so:
TEXT1 1 2 3 4 5 6 7 8 9
TEXT2 9 8 7 6 5 4 3 2 1
TEXT3 8 5 6 4 5 6 9 8 8
The spaces represents individual cells. So TEXT1 is in a cell, then each number is in it’s own cell. From that I will compile lists manually such as:
1
TEXT1
TEXT2
2
TEXT1
TEXT2
3
TEXT1
TEXT2
4
TEXT1
TEXT2
TEXT3
5
TEXT1
TEXT2
TEXT3
etc…
For 1, TEXT1 and TEXT2 are listed because those rows contain a 1. TEXT3 doesn’t so its not listed under 1.
For 2 and 3, it’s exactly the same. 4 is in all three rows so all the TEXT’s are listed under 4.
It’s very simple, hopefully explained it well.
Can this be automatically done? It takes a lot of time.