Hello!
I have a formula with nested IF statements that works except that what I realize I actually need is to not have the logic stop when it finds 1 of the IF statements true, and actually continue on to validate the remaining IF statements.
It very well could be that IF statements are not the right way to reach my goal, so I’ll also explain what my goal is.
We have several ways that our participants in a course interact with us. These include:
- Critiques of work
- Q’s for Coaching submitted
*** Last Lesson in Course** - Community Engagement
- Milestone Reached
Each of these has an Airtable field with the most recent date they’ve interacted with us in the respective category.
What I want to do is create a formula that evaluates each of the 5 dates and populates the most recent of the 5. When I’m doing it with nested IF statements currently, if it finds that 1 fields date is greater than the compared fields date, it stops there and populates that date without validating if the others are actually more recent.
If an IF statement is the proper way to do this, but I’m missing another logical argument to be included for this to work, please let me know :slightly_smiling_face: OR, even if there’s another type of formula to create that would truly provide the most recent date of the 4 categories, that’d be helpful too.
The below is only evaluating 4, I want to include the 5th, but already realized the issue when evaluating just the 4…so that’s why it’s missing all 5 fields, and only lists out 4 total ({Critique: Last Submitted}, {Q&A: Last Submitted}, {FB: Last Posted}, and {Most Recent Milestone})
IF(
{Critique: Last Submitted}>{Q&A: Last Submitted},
{Critique: Last Submitted},
IF(
{Q&A: Last Submitted}>{FB: Last Posted},
{Q&A: Last Submitted},
IF({FB: Last Posted}>{Most Recent Milestone},
{FB: Last Posted},
{Most Recent Milestone}
)))





