Forum Discussion
MikeMike
Qrew Cadet
In a formula field you can put multiple conditions into your IF statement, eg:
Basically this says if the value of Field1 is "N/A" then divide Field2 by 5, otherwise if the value of Field1 is "Yes", then divide Field2 by 3, otherwise if the value of Field1 is "No" then divide Field2 by 10. If all the above are false then make the value 0.
All of these different criteria can be changed to suit your requirements.
IF(
[Field1] = "N/A", [Field2]/5,
[Field1] = "Yes", [Field2]/3,
[Field1] = "No", [Field2]/10,
0
)
Basically this says if the value of Field1 is "N/A" then divide Field2 by 5, otherwise if the value of Field1 is "Yes", then divide Field2 by 3, otherwise if the value of Field1 is "No" then divide Field2 by 10. If all the above are false then make the value 0.
All of these different criteria can be changed to suit your requirements.
TabindaTariq
6 years agoQrew Trainee
I tried that, but because the values of the "N/A" fields vary (some are worth 2, some worth 5, etc.), and there are 7 of them, once the first condition is met, the form calculates the % based on the Total Value associated with that "N/A" condition and none of the others are calculated.
What I need is to calculate the Total Value based on the combination of any of the conditions being true.
Not sure it's even doable at this point :(
What I need is to calculate the Total Value based on the combination of any of the conditions being true.
Not sure it's even doable at this point :(