fiscal year formula, #invalid operation in blank cell when converting to a column formula

I created a column called fiscal yr counter to be used in other formulas. The fiscal yr runs from July 1 to June 30. the formula works off of an award date column. Current formula for counter is:
My issue is when I convert it to a column formula, it proceeds to give me #invalidoperation in some of the column cells where there isn't a date in the award date column. If no award date was picked previously, the fy counter cell at the row stays blank. If there was an award date in there and I deleted it out(for testing purposes), then it will produce the message. See below:
Is there a way I can correct it so that the fy counter will stay blank in the cell and only show when there is an award date instead of picking up if something was previously in the award date cell?
Best Answer
-
You would need to wrap the formula in an IFERROR statement.
=IFERROR("FY" + ..................)), "")
Answers
-
You would need to wrap the formula in an IFERROR statement.
=IFERROR("FY" + ..................)), "")
-
So the formula would now look like:
=IFERROR("FY"+IF(MONTH([Award Date]@row)>6,YEAR([Award Date]@row)+1,YEAR([Award Date]@row),"")
Correct?
-
It worked! Thanks Paul!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.2K Get Help
- 452 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!