I'm working off this post: Formula to find the header index of the first non blank cell of a range in Excel?
Where the formula is: =IF(COUNTA(B2:Z2),INDEX(B$1:Z$1,MATCH(TRUE,INDEX(B2:Z2<>"",0),0)),"")
It searches the matrix row from right to left, to find the first value, and then pick the corresponding date from the column header.
How would I reverse the equation, so it searches from the left to right. Finding the last date rather than the first?
Thanks
* edit *
The formula is searching from left to right. For "Rob" it starts at B3 to F3, giving the answer "15-01-01" ... but the answer I want is "15-01-04" as that would search the row from right to left.
For Kyle the correct answer should be "15-01-02"
And for Adam, the correct answer should be "15-01-05"
Does that clear things up?