I am having a hard time configuring a formula that logically is "If {Date MWS Completed} was between 60 and 30 days ago, then display difference between start date and completion date, otherwise, show a blank. This is what I have and I can’t figure out why it won’t work
IF(
AND(
IS_AFTER({Date MWS Completed},DATEADD(TODAY(), -60, ’days’),
IS_BEFORE({Date MWS Completed},DATEADD(TODAY(), -30, ’days’),
), DATETIME_DIFF({Status Complete}, Info, ‘weeks’), “ ”)
Any help is appreciated!