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:
DATEADD({Project Date}, 7, "days")
which worked perfectly,
but im not sure if its possible to then have it say "not needed" or even have it be blank if the project type matches certain conditions and still show the date if it matches other conditions!
I also tried this:
IF(
OR(
{Project Type} = "Wedding",
{Project Type} = "Elopement"
),
DATEADD({Project Date}, 7, "days"),
IF(
AND(
OR(
{Project Type} = "Couples",
{Project Type} = "Family"
),
"Not Needed",
"Not Needed"
)
)
)
which kinda worked but it only filled in the wedding date status and not of the other options.
Let me know if that makes sense and if you can help please 🙂