Hello,
Currently I have a date field called Date, I would like to make a formula that looks at this date and outputs the first Tuesday of the previous month.
Example
{date} - Shows March 13, 2025
Formula - Should show February 4, 2025 (First Tuesday of Previous Month)
I was able to find the 1st date of the previous month utilizing this, but I cannot seem to figure out how to get the first Tuesday.
DATETIME_FORMAT(DATEADD(DATEADD({Date}, -1, 'month'), -(DAY({Date}) - 1), 'days'),"MM/DD/YYYY")
