IfError- should this work?

I Am trying to get an IfError formula to work and not having any luck. CAn anyone help?
=IFERROR([Product Type]@row = "Hardware", [Actual Shipment Date]@row >TODAY(-12), [Backlog @ Bud]@row), " ")
I want that if a row is hardware and the actual ship date is not within the last 12days it populates the cell with the value from backlog@bud. If this is an error I want 0.
Answers
-
Try an IF/AND.
=IF(AND([Product Type]@row = "Hardware", [Actual Shipment Date]@row >TODAY(-12)), [Backlog @ Bud]@row)
-
Hi Paul
thanks for the suggestion - this produced no errors but also returned no values in the cell
-
Can you provide a screenshot of an example where it should be pulling but is not?
-
I just re-read your original post. Try switching it from "greater than" TODAY(-12) to "less than" TODAY(-12).
-
If i remove the IfError and make it just am If Formula:
=IF([Product Type]@row = "Hardware", [Actual Shipment Date]@row < TODAY(-12), [Backlog @ Bud]@row)
it works but cells that don't match return a :
#INVALID COLUMN VALUE
So its just my IFError element that isnt working
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!