Find Multiple Dates older than 2 Weeks and not blank.
For future me.
Leaving this here because I was unable to find any reference using the Khoros Search or Google Search.
If((ToText([Email Date]) <> "" and [Email Date] <= (Today()- Days(14)))
or (ToText([Instructions Send Date]) <> "" and [Instructions Send Date] <= (Today()- Days(14))
or (ToText([Verification Email Date]) <> "" and [Verification Email Date] <= (Today()- Days(14)))),true,false)
This formula defines a checkbox formula field.
The Checkbox formula field is used in a Pipeline to filter records meeting the criteria.
The entire purpose of the Pipeline is to clear the dates from these records once they are older than 14 days in the past.
I add this formula field to a report with the fields being evaluated and then look at the report. Only the ones that meet my criteria should be checked. I can use the report to verify it is working or make changes as needed.
Once satisfied with the results, I add the formula checkbox to the Pipeline as a single filter.
In case you're wondering, I also put in a Give Feedback asking to grant rights to use reports as a filter in a Pipeline.