IF + OR formula help
Hi
I have 2 columns Market & Static, I need a formula that will check the markets, and if the market drop-down matches any of the markets it will times the amount of statics by 2.
This is the formual i currently have but its not working :(
=IF(OR(Market@row="RM", Market@row="GI”), OR(Market@row=“Dubai”, Market@row=“TK”),([Statics]@row * 2)) + IF(OR(Market@row="UK", Market@row="ES”), OR(Market@row=“FR”, Market@row=“DE”),([Statics]@row * 5))
I hope the above makes sence can someone please help?
Best Answer
-
Hi @Jade,
Your OR functions just need fixing slightly:
=IF(OR(Market@row = "RM", Market@row = "GI", Market@row = "Dubai", Market@row = "TK"), Statics@row * 2, IF(OR(Market@row = "UK", Market@row = "ES", Market@row = "FR", Market@row = "DE"), Statics@row * 5))
Sample:
Hope this helps, but if you've any problems/questions then just post! 🙂
Answers
-
Hi @Jade,
Your OR functions just need fixing slightly:
=IF(OR(Market@row = "RM", Market@row = "GI", Market@row = "Dubai", Market@row = "TK"), Statics@row * 2, IF(OR(Market@row = "UK", Market@row = "ES", Market@row = "FR", Market@row = "DE"), Statics@row * 5))
Sample:
Hope this helps, but if you've any problems/questions then just post! 🙂
-
Amazing, Thank you so much for your help here
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!