Okay, so here's another one for the community
We have a tracker with three date fields. The PM Received date #1 should take priority and be returned if not blank, otherwise, we want one of the other two dates, whichever is not blank. (and only one of #2 & #3 will be not blank)
- PM Received Intake Date: The actual date project was received
- Engagement Date: Targeted engagement date for one set of project types
- Kickoff Month: A second possible target date for a different project type
What we tried and got a #UNPARSEABLE error…
=IF(ISBLANK([PM Received Intake Date]@row), IFERROR(INDEX(COLLECT({Engagement Date}, { Engagement Date},NOT(ISBLANK([Engagement Date]@row)),{Kickoff Month},{Kickoff Month},NOT(ISBLANK([Kickoff Month]@row)))),PM Received Intake Date]@row))