Hello,
I am having some trouble getting a date from 2 different sheets to populate in a 3rd. As a standalone formula, these work just fine. Is there a way to combine so that I am indexing 2 ranges and returning the requested value if there is a match?
=INDEX({Training Requests / Tracking Range 2}, MATCH([Location ID]@row, {Training Requests / Tracking Range 1}, 0))
=INDEX({Completed Training Requests / Tracking Range 1}, MATCH([Location ID]@row, {Completed Training Requests / Tracking Range 2}, 0))
If the above is not possible, I have built helper columns that I can hide to the side but am having trouble getting a formula to return the value if a date is present from either cell. It will only work on the true value, not the if false value. The match would be the cell contents (DATE in Cell) vs. Blank or #No Match. Here are examples of attempts that work 1/2 way:
=IF(ISDATE(Completed@row), Completed@row, IF(ISDATE(Current@row), Current@row))
=IF(ISDATE(Completed@row), Completed@row, OR(ISDATE(Current@row), Current@row))
=IF(ISDATE(Completed@row), Completed@row, Current@row)) (This one didn't work at all.)
Thanks in Advance for any assistance you can provide.