Letter Sent#1 - this has a "Yes" or "" Value
Letter Sent Date - Date Value
Letter Sent #2 - this has a "Yes' or "" Value
Letter Sent Date - Date Value
Letter Sent # 3 - this has a "Yes" or "" Value
Letter Sent Date - Date Value
I need to look at each date value and find the most recent and then pull in
which it was; Letter Sent #1, or #2 or #3?
Also if I need to change the format in the future for the Letter Sent #1, #2
and #3 to values such as "Yes' or "No" instead "Yes" or "". Would the formula
provided need updated or would it not matter since it is loking at the
maximum date first?
=MAX(AB2:AG2)
(and format the formula cell to excel date format...Right click
FormatCells>select Date and a format)
If this post helps click Yes
---------------
Jacob Skaria
=INDEX(AB1:AG1,MATCH(MAX(AB2:AG2),AB2:AG2,0)-1)
=INDEX($AB$1:$AG$1,MATCH(MAX(AB2:AG2),AB2:AG2,0)-1)
I tried the formula with data as above...which is what I understood from
your initial post. In the aboave example the formula will return the header
"LS$3" since the date in Col AG is the highest...
If this post helps click Yes
---------------
Jacob Skaria
=INDEX($AC$1:$AL$1,MATCH(MAX(IF($AC$1:$AL$1="Letter Sent
Date",$AC$2:$AL$2)),$AC$2:$AL$2,0)-1)
'(array entered)
=INDEX($AC$1:$AL$1,MATCH(MAX(IF(ISNUMBER(SEARCH("Letter Sent
Date",$AC$1:$AL$1)),$AC$2:$AL$2)),$AC$2:$AL$2,0)-1)
If this post helps click Yes
---------------
Jacob Skaria