Hm, I don’t think that you can do [NUMBER] < [VALUE] < [NUMBER]
, actually
I think you’ll need to separate them each out into single lines, e.g.
IF(
AND(
46 < SRt,
SRt < 55,
46 < PUt,
PUt > 54
),
'Profile 5',
IF(
AND(
46 < SRt,
SRt < 55,
PUt > 56
),
'Profile 6'
)
)
You can view it here. To view the formula, duplicate the base by clicking the title of the base at the top of the screen, then the three horizontal dots on the right, and then the “Duplicate Base” button.