Jul 06, 2023 01:53 PM - edited Jul 06, 2023 03:20 PM
Hello!
So i was wondering if it was possible to create a formula (or combine formulas) in order to use the data from one date field and add 7 days to it in another. and then filter it if the project status matches certain conditions.
I got the first part to work using:
Solved! Go to Solution.
Jul 06, 2023 06:18 PM
Hello @virtuallyaurora ,
SWITCH() is more concise for simple multiple conditionals.
SWITCH({Project Type},
"Wedding", DATETIME_FORMAT(DATEADD({Project Date}, 7, "days"),"YYYY/MM/DD"),
"Elopement", DATETIME_FORMAT(DATEADD({Project Date}, 7, "days"),"YYYY/MM/DD"),
"Couples", "Not Needed",
"Family", "Not Needed",
""
)
Jul 06, 2023 06:18 PM
Hello @virtuallyaurora ,
SWITCH() is more concise for simple multiple conditionals.
SWITCH({Project Type},
"Wedding", DATETIME_FORMAT(DATEADD({Project Date}, 7, "days"),"YYYY/MM/DD"),
"Elopement", DATETIME_FORMAT(DATEADD({Project Date}, 7, "days"),"YYYY/MM/DD"),
"Couples", "Not Needed",
"Family", "Not Needed",
""
)