I have a row containing formulas that will either show a date or a "".
Using VBA, I want to find the column where the oldest date is located in that row. So in the example above, I need to identify the column where 6/2 is located.
How can I do this please?
A | B | C | D | E | F |
---|---|---|---|---|---|
6/5 | 6/4 | 6/3 | 6/2 |
Using VBA, I want to find the column where the oldest date is located in that row. So in the example above, I need to identify the column where 6/2 is located.
How can I do this please?