IF AND with check box and other criteria
I'm sure I'm just missing a comma or something silly that my brain is not catching, but can I get an assist on this one?
Deducted from Purchase Price is a check box column
Accepting Extention? is a text column
I want to add the value from the Amount Due column if the check box is checked and if the cell in Accepting exertion is Yes. I keep getting an #unparseable error message.
=IF(AND([Deducted from Purchase Price]@row = 1, [Accepting Extension?]@row = Yes), [Amount Due]@row,0)
Best Answer
-
Hi @Kim Bowie ,
Try putting quotation marks around yes. That should fix it:
=IF(AND([Deducted from Purchase Price]@row = 1, [Accepting Extension?]@row = "Yes"), [Amount Due]@row,0)
Answers
-
Hi @Kim Bowie ,
Try putting quotation marks around yes. That should fix it:
=IF(AND([Deducted from Purchase Price]@row = 1, [Accepting Extension?]@row = "Yes"), [Amount Due]@row,0)
-
I can't believe I missed that. The " " worked. thanks
-
@Kim Bowie Sometimes it's the simplest things that trip us up because we're looking for complex problems!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.8K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 510 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!