Any help would be appreciated
I have a table like this:
I have a lookup value for column A already. I want to find the column header for the first value found that's greater than or equal to 2. For example, if my lookup is 400, then I want to return the column header 4 since 2.1 if the first value greater than or equal to 2.
I have a table like this:
2 | 4 | 6 | 8 | |
---|---|---|---|---|
100 | 1.5 | 2.2 | 2.8 | 3.1 |
200 | 1.1 | 1.7 | 2.7 | 3.2 |
300 | 1.8 | 2.6 | 3.5 | 3.9 |
400 | 1.6 | 2.1 | 3.3 | 4.4 |
I have a lookup value for column A already. I want to find the column header for the first value found that's greater than or equal to 2. For example, if my lookup is 400, then I want to return the column header 4 since 2.1 if the first value greater than or equal to 2.