Forum Discussion
Saxon10
5 years agoPost Prodigy
IF & AND Statement
RULE I have a length, width and height in column A,B,C and column D has unit of dimension I am trying to calculate volume in M3 based on the column D and dimension (length, width and he...
- Anonymous5 years ago
Hi Saxon10
use the below query as per your excel formula. If condition is good to use. Tweak your calculation as per your requirement. Plesae cehck, The formula doesn't need to devide by 1k if the UOM is "M"
_dimRes = IF(ISBLANK([UOM]),BLANK(), IF([UOM] = "CM", [L]*[W]*[H]/1000000,IF([UOM] = "MM", [L]*[W]*[H]/1000000000,IF([UOM] = "M", [L]*[W]*[H]/1000))))
Saxon10
5 years agoPost Prodigy
I am trying to attempting IF/AND function but I am receiving error.