=IF(AND(TODAY()-$C5<=60,TODAY()-$C5>30),$D5,0)
The above formula is an example of multiple IF statements in excel or multiple criteria where each criteria is joined using AND function. AND function does literally the same thing as the and does in language. So the above formula will be read like this in plain English:
If difference between today’s date and the date in cell C5 is less than or equal to 60 days AND the difference between today’s date and the date in cell C5 is greater than 30 days than fetch the value from cell D5 otherwise put 0.
$C5 represents the filed date
$D5 represents the invoice amount
Now in excel it works very I have tested it , I want to use it in MS Access as well , I have tried like below but it does not work:
=IF(AND(Date()-[MMDate]<=60,Date()-[MMDate]>30),[LineTotal],0)
The above code is supposed to age those amounts in above 30 days and below 60 days
How do I fix it
Sorry to disturb your holiday
Regards
Chris
Our community of experts have been thoroughly vetted for their expertise and industry experience.
The Most Valuable Expert award recognizes technology experts who passionately share their knowledge with the community, demonstrate the core values of this platform, and go the extra mile in all aspects of their contributions. This award is based off of nominations by EE users and experts. Multiple MVEs may be awarded each year.
The Distinguished Expert awards are presented to the top veteran and rookie experts to earn the most points in the top 50 topics.