Hi, I’ve been battling the formulas for 24 hours now and getting a little nearer to being able to make a printing calculator but hitting a wall again.
The url is Elfsight
I am building it piece by piece now to ensure it works before introducing the next of the 10 fields.
This works:
IF(AND({{m7xx37ql}}==“1”,{{m7xtoivt}}==“1”),
IF({{c4w5ykl9}}==“1”,43,
IF({{c4w5ykl9}}==“2”,44,
IF({{c4w5ykl9}}==“5”,
IF({{9aw2q551}}<32,47,
IF({{9aw2q551}}==“32”,51,
IF({{9aw2q551}}==“36”,55,
IF({{9aw2q551}}==“40”,59,
IF({{9aw2q551}}==“44”,62,
IF({{9aw2q551}}==“48”,66,
IF({{9aw2q551}}==“52”,70,0)
)
)
)
)
)
),
0)
)
),
0)
But when i try adding three other variables for the CHOOSE A SIZE, it’s giving me constant invalid errors. I’m guessing it’s the location of the AND, IF or ORs?
IF(AND({{m7xx37ql}}==“1”,OR({{m7xtoivt}}==“1”,{{m7xtoivt}}==“4”,{{m7xtoivt}}==“5”,{{m7xtoivt}}==“6”)),IF({{c4w5ykl9}}==“1”,43,IF({{c4w5ykl9}}==“2”,44,IF({{c4w5ykl9}}==“5”,IF({{9aw2q551}}<32,47,IF({{9aw2q551}}==32,51,IF({{9aw2q551}}==36,55,IF({{9aw2q551}}==40,59,IF({{9aw2q551}}==44,62,IF({{9aw2q551}}==48,66,IF({{9aw2q551}}==52,70,0))))))),0))),0)
Any help very much appreciated.