Reputation: 154
I would like excel to show only the months that have ended. For the months that have not ended, I want the cells to be blank. I used this formula and it shows up #VALUE!. How do I fix this?
=IF( OR( IFERROR( (EOMONTH(A343,0)+1 > EOMONTH(TODAY(), -1)), ""), ISBLANK(A343) ), "", EOMONTH(A343,0)+1)
Upvotes: 0
Views: 85
Reputation: 8375
Works as shown for me:
The formula you gave results in a blank as the month has not ended yet, while April has ended.
Upvotes: 1