Hi,
I think this is more of a VBA question than a function.
Imagine a grid system that is numbered based on rows and columns. The numbers are rows, and letters are column - sort of like an excel sheet except rows increase from bottom to top.
4A 4B 4C 4D
3A 3B 3C 3D
2A 2B 2C 2D
1A 1B 1C 1D
Now, imagine again that each grid has 9 boxes numbered from top to bottom - 3 numbers per row (something like your telephone keypad).
The following list are coordinates which covers the grid. The numbers following the letter represent the area of each grid it covers (keypad format).
4A89
4B789
4C78
3A2356
3B123456
3C1245
2C9
2D78
1C3
1D12
If the list were randomized, is there a programmatical way to distinguish the list and categorize them by their areas? Whether if it's in two separate columns or text, doesn't matter; As long as they are separated.
I think this is more of a VBA question than a function.
Imagine a grid system that is numbered based on rows and columns. The numbers are rows, and letters are column - sort of like an excel sheet except rows increase from bottom to top.
4A 4B 4C 4D
3A 3B 3C 3D
2A 2B 2C 2D
1A 1B 1C 1D
Now, imagine again that each grid has 9 boxes numbered from top to bottom - 3 numbers per row (something like your telephone keypad).
The following list are coordinates which covers the grid. The numbers following the letter represent the area of each grid it covers (keypad format).
4A89
4B789
4C78
3A2356
3B123456
3C1245
2C9
2D78
1C3
1D12
If the list were randomized, is there a programmatical way to distinguish the list and categorize them by their areas? Whether if it's in two separate columns or text, doesn't matter; As long as they are separated.