Calculate days between two dates if the date is greater than 01/01/2024

Hello,
I am trying to grab the number of dates between two dates if the manufacture date is greater than 01/01/24. This is the formula I am using and it is not working.
=IF([Manufacture Date]@row, >DATE(2024, 1, 1), [Paperwork/HPLC]@row - [Manufacture Date]@row, 0)
Answers
-
Remove one comma and you should have it
=IF([Manufacture Date]@row >DATE(2024, 1, 1), [Paperwork/HPLC]@row - [Manufacture Date]@row, 0)
-
HI @tchav, You have a misplaced ",". Try:
=IF([Manufacture Date]@row >DATE(2024, 1, 1), [Paperwork/HPLC]@row - [Manufacture Date]@row, 0)
Good luck and be well!
If my response was helpful or answered your question please be sure to upvote it, mark it asawesome, or mark it as the accepted answer!
-
Thank you so much!! Silly me
Help Article Resources
Categories
Check out the Formula Handbook template!