Forum Discussion
Pasco2018
Mar 04, 2020Copper Contributor
Aging report formula that does NOT use 'TODAY' but rather March 6 2020
Hello, I have created a 13 week aging report for a 13 week cash flow. I am currently using =IF(AND(TODAY()-$C486<=21,TODAY()-$C486>14),$D486,0) formula, does anyone know a formula that can be used f...
ChrisMendoza
Mar 04, 2020Iron Contributor
If I understand correctly, I offer two options:
Option1 uses a helper field:
=IF(AND($A$2-D2<=21,$A$2-D2>14),TRUE,FALSE)Option2 does not:
=IF(AND(DATEVALUE("3/6/2020")-D2<=21,DATEVALUE("3/6/2020")-D2>14),TRUE,FALSE)