Hi Nicole,
You’re using typographic double quotes “ ” but those aren’t understood by the formula editor.
Use simple double quotes instead: " "
Hi Nicole,
You’re using typographic double quotes “ ” but those aren’t understood by the formula editor.
Use simple double quotes instead: " "
That’s just a cut and paste error; I’m using the quotes you suggested. The formulas work separately, but how can I combine them to get the result I need?
That’s just a cut and paste error; I’m using the quotes you suggested. The formulas work separately, but how can I combine them to get the result I need?
Sorry, the first statement had an extra ). This is the correct one
IF({Client Name}=“ABC”,123)
That’s just a cut and paste error; I’m using the quotes you suggested. The formulas work separately, but how can I combine them to get the result I need?
Okay. Trying to disentangle that ~~& ~~ spaghetti, I come up with this:
IF({Client Name}="ABC",123,
IF({Payment Schedule}="Annual",
IF({Contract Length}>=36, 5*{Field 1},
IF({Contract Length}=24, 4*{Field 1}))
)
)
Note that, as it is, the formula will do nothing for Contracts ranging between 25 and 35 months, or shorter than 24 months.
Okay. Trying to disentangle that ~~& ~~ spaghetti, I come up with this:
IF({Client Name}="ABC",123,
IF({Payment Schedule}="Annual",
IF({Contract Length}>=36, 5*{Field 1},
IF({Contract Length}=24, 4*{Field 1}))
)
)
Note that, as it is, the formula will do nothing for Contracts ranging between 25 and 35 months, or shorter than 24 months.
That worked! Thank you!