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
- less than or equal to 50 = $
- less than or equal to 100 = $$
- less than or equal to 500 = $$$
- less than or equal to 1000 = $$$$
- more than 1000 = $$$$$
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!