Hi guys, I can get the following formula to work without issue:
=IF(TODAY() = DATE(2019, 8, 9), SUM([2019 Aug]:[2019 Aug]))
What I can't do is update the logical expression to be if today's date is between Aug 1 and Aug 31. Essentially I want a self-updating formula that will always show me the sum of the appropriate month's column based on today's date/month. I'll eventually nest everything to say if today is between Jan 1 and Jan 31, show the 2019 Jan column sum, if today is between Feb 1 and Feb 28, show the 2019 Feb column sum, etc. etc. etc.
Here's the formula I've written and tried modifying to no avail:
=IF(TODAY() <> AND(DATE(2019, 8, 1), DATE(2019, 8, 31)), SUM([2019 Aug]:[2019 Aug]))
Any suggestions?
Thanks,
Jaye
ETA: the error presented is #INVALID DATA TYPE