I have the same column B values in another sheet and I would like to return the matching date to the value
If the table are the same why not link the sheets ?
I can only presume the above is not viable because the ordering of the values in Col B on Sheet2 is not the same as on Sheet1 ?
If that is indeed the case then if we assume
Sheet1!A1:B300 contain original values (Col A being Dates and B being values)
Sheet2!B1:B300 contain same values as Sheet1!B1:B300 but in different order
Then...
First I would insert a header row into Sheet2 such that A1:B1 is moved to A2:B2 and A1:B1 is blank.
Then...
Is there a formula that we can write that will say "if 30-Jun-98 has already been returned, then find the next corresponding date to value 7.0"?
A2:
=INDEX(Sheet1!$A$1:$A$300,MATCH(1,INDEX((Sheet1!$B$1:$B$300=$B2)*ISNA(MATCH(Sheet1!$A$1:$A$300,$A$1:$A1,0)),0),0))
copied down to A301
Bookmarks