Apr 16, 2022 08:37 AM
I’ve tried everything and I’m so close, but I can only seem to nest 4 IF statements and can’t find how to get up to 5.
Background: I’m trying to assign dollar signs to different price points. If a price is
Here’s what I have that almost works:
IF(
{Price} <= 50,
"$",
IF(
{Price} <= 100,
"$$",
IF({Price} <= 500,
"$$$",
IF({Price} <= 1000,
"$$$$"
)
)
)
)
I’d like to just add one more IF in there, but I guess when I add a “>=” it messes up the code and I get an error. How do I get that just one extra step? Thanks in advance!
Solved! Go to Solution.
Apr 16, 2022 08:48 AM
You don’t actually need the last condition for more than 1000, because if it isn’t less than or equal to 1000, it must be more.
Here is the formula with my style of formatting to make nested IF
s easier to read. Note that the number of closing parenthesis matches stacked at the end matches the number of IF
s.
IF(
{Price} <= 50,
"$",
IF(
{Price} <= 100,
"$$",
IF(
{Price} <= 500,
"$$$",
IF(
{Price} <= 1000,
"$$$$",
"$$$$$"
))))
Apr 16, 2022 08:48 AM
You don’t actually need the last condition for more than 1000, because if it isn’t less than or equal to 1000, it must be more.
Here is the formula with my style of formatting to make nested IF
s easier to read. Note that the number of closing parenthesis matches stacked at the end matches the number of IF
s.
IF(
{Price} <= 50,
"$",
IF(
{Price} <= 100,
"$$",
IF(
{Price} <= 500,
"$$$",
IF(
{Price} <= 1000,
"$$$$",
"$$$$$"
))))
Apr 16, 2022 09:00 AM
Thank you so much! I was driving myself crazy. I very much appreciate your help.
Apr 17, 2022 12:40 AM
Hi,
REPT("$", ({Price}>50)+({Price}>100)+({Price}>500)+({Price}>1000)+1)