Hi everyone!
I am really stuck on how to perform a complex IF statement that involves a date range and was wondering if anyone could help. I have tried both ways (below) but I receive "formula warnings" with each way and both produce null values in my data output. I am trying to make the workflow so that if a date is in a certain range, then it performs a specific calculation. Any ideas on how to achieve this?
IF [Cost x Rate]=0 AND [Depreciation Method]="STL" AND ([Date Placed In Service]>=2017-07-30 AND [Date Placed In Service]<=2017-08-26) THEN ([Cost]/36)*12 Elseif
[Cost x Rate]=0 AND [Depreciation Method]="STL" AND [Date Placed In Service] IN(2017-08-27,2017-09-30) THEN ([Cost]/36)*11 Elseif.....
Thanks in advance!