Jun 07 2023 11:25 AM
Hello, I needed a formula that would reference one of 2 dates. so if column Q contains "Yes" then reference the date in column R, or if Column Q contains "No" then reference date in cell O. Thank you!
Jun 07 2023 11:51 AM
Perhaps this one (You can change out the "-" with any desired text to show if the cell is neither "yes" or "no":
=SWITCH(Q2,"yes",R2,"no",O2,"-")
Jun 07 2023 12:02 PM
Jun 07 2023 12:11 PM
Using named ranges
= IF(symptomatic="Yes", onsetDate, episodeDate)
or, borrowing from Patrick,
= SWITCH(symptomatic,
"Yes", onsetDate,
"No", episodeDate,
"")