Hey Everyone!
I am trying combine two different beast modes I am already using and keep running into syntax errors.
DATE_ADD(`Submit Date`,21 day) - Used to add +21 days to submit date for new date
I am wanting to add
CONCAT(MONTHNAME(`Locked`),
(CASE WHEN DAY(`Locked`) <= 15
THEN ' 1st - 15th'
ELSE ' 16th - EOM'
END)
)
to the same beast mode so the new dates are now broken down by 1st-15th and 15th-EOM.
Any help would be appreciated!
Thanks!!