Help

Scoring based on >, <

Topic Labels: Formulas
Solved
Jump to Solution
821 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Archie_Timosenc
6 - Interface Innovator
6 - Interface Innovator

Hello Community!

I need to calculate the score of a record based on that record’s numeric value.
My records’ numeric values can be anywhere between 1 and 100, and I need to set a score between 1 and 10 to each value based on how high that value is, like so:

1-3 => 1
3-5 => 2
5-10 => 3
10-20 =>4… you get the idea

My problem is with setting up a formula - whet I try to set it like this:

IF(Value>1,1,(IF(Value>3,2,… etc.

the result only reads the first parameter (value>1 => returns 1) and it doesn’t compute when the value of the record is more than 3, it still returns me 1.

How can that be fixed?

1 Solution

Accepted Solutions
ScottWorld
18 - Pluto
18 - Pluto

There are at least 3 or 4 different ways that I can think of to create a formula for this, but if we stick with the formula that you’ve already created, then just reverse the order of the expressions. Start with the highest number and progress to the lowest number.

See Solution in Thread

2 Replies 2
ScottWorld
18 - Pluto
18 - Pluto

There are at least 3 or 4 different ways that I can think of to create a formula for this, but if we stick with the formula that you’ve already created, then just reverse the order of the expressions. Start with the highest number and progress to the lowest number.

Hey @ScottWorld (again :grinning_face_with_big_eyes: )

It worked! That’s weird, I thought I tried it! Thanks a lot!!!