formula giving error
Hi,
I am trying to enter the following formula
(6.112*10 ^ (7.5*temp/(237.7+temp))*Humidity/100)
Where temp and Humidity are numeric fields.
It is giving me an error that symbol expected:”)” at line 1 column 10. The formula is working fine in other database .
7 replies
-
Try this...
pow(6.112 * 10, 7.5 * Temp / (237.7 + Temp) * Humidity / 100)
-
Thank you so much, it works perfectly. just so I understand what does "pow" stand for?
-
Power, so in the formula...
6.112 * 10
- is the power and7.5 * Temp / (237.7 + Temp) * Humidity / 100
- is the exponent -
thanks, understood
-
You bet. Here's a link to the Ninox functions...
https://ninoxdb.de/en/manual/calculations/reference-of-functions-and-language
-
Well, at the risk of beating a dead horse I'm going to correct myself .
6.112 * 10
- is the base and7.5 * Temp / (237.7 + Temp) * Humidity / 100
- is the exponent andthe result is the power
-
thanks for helping me out, it is very clear now
Content aside
- 5 yrs agoLast active
- 7Replies
- 1431Views