Hoping someone can help me out.... I am working in a spreadsheet with almost 10,000 rows of data and growing. I have an array formula that provides me with the largest (5) value within a date range as follows:
{=LARGE(IF(Dates>=$A$5,IF(Dates<=EOMONTH($A$16,0),IF(Zones={1,2,3},LineStop))),F5)}
This works great. But I also want to find out what row this formula result is in so that I can get the data from a different column on the same row. I have tried the following:
{=MATCH(LARGE(IF(Dates>=$A$5,IF(Dates<=EOMONTH($A$16,0),IF(Zones={1,2,3},LineStop))),F5),LineStop,0)}
However, it is returning the first row in which the same number appears and not the row containing the formula result.
Rank Line stop Row#
1 480 9430
2 119 9671
3 60 169
4 53 3494
5 49 196
I should be getting results from row 8900 to 9843 in the Row# column. Does anyone have any suggestions? Thank you.
{=LARGE(IF(Dates>=$A$5,IF(Dates<=EOMONTH($A$16,0),IF(Zones={1,2,3},LineStop))),F5)}
This works great. But I also want to find out what row this formula result is in so that I can get the data from a different column on the same row. I have tried the following:
{=MATCH(LARGE(IF(Dates>=$A$5,IF(Dates<=EOMONTH($A$16,0),IF(Zones={1,2,3},LineStop))),F5),LineStop,0)}
However, it is returning the first row in which the same number appears and not the row containing the formula result.
Rank Line stop Row#
1 480 9430
2 119 9671
3 60 169
4 53 3494
5 49 196
I should be getting results from row 8900 to 9843 in the Row# column. Does anyone have any suggestions? Thank you.