How to locate information based on a percentage reached?
Hi! I want a formula to find the percentage of 53.87% that goes from 0% to more than 120%, and that returns Between 41.1% and 60% - 5% discount.
Best Answer
-
Hey @Filipe Nascimento,
I recommend creating a Formula using the IF and AND Functions which can be used to evaluate multiple criteria. I've created an example below on how this may look like:
Formula (Return Column): =IF(AND(Value@row >= 1, Value@row <= 3), "Apple", IF(AND(Value@row >= 4, Value@row <= 6), "Banana", IF(AND(Value@row >= 7, Value@row <= 9), "Cantaloupe")))
Notice that we are using the AND Function to find if a number is equal to or between two values.
I hope this helps!
Jaykel
Answers
-
Hey @Filipe Nascimento,
I recommend creating a Formula using the IF and AND Functions which can be used to evaluate multiple criteria. I've created an example below on how this may look like:
Formula (Return Column): =IF(AND(Value@row >= 1, Value@row <= 3), "Apple", IF(AND(Value@row >= 4, Value@row <= 6), "Banana", IF(AND(Value@row >= 7, Value@row <= 9), "Cantaloupe")))
Notice that we are using the AND Function to find if a number is equal to or between two values.
I hope this helps!
Jaykel
-
Good! I believe it will help me a lot. Thank you very much @Jaykel Torres
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!