Hey Smartsheet friends
I have one of "those" formulas i need to use in a calculation that uses quite a deep decimal placement. For those of your that are a bit geeky like me you will love this one!!!!
I am collected information on temperature and relative humidity and I need to calculate the heat index (it's part of a new OSHA rule). For those of you wondering, the calculation is…..
HI = -42.379 + 2.04901523*T + 10.14333127*RH - .22475541*T*RH - .00683783*T*T - .05481717*RH*RH + .00122874*T*T*RH + .00085282*T*RH*RH - .00000199*T*T*RH*RH
HI is Heat Index, T is temperature, and RH is Relative Humidity
I plug this calculation into my Smartsheet column and it changes the calculation to (i put in bold the changes to the calculation):
=(-42.379 + (2.04902 * Temperature@row ) + (10.14333 * [Relative Humidity]@row ) - (0.22476 * Temperature@row * [Relative Humidity]@row ) - (0.00684 * Temperature@row * Temperature@row ) - (0.05482 * [Relative Humidity]@row * [Relative Humidity]@row ) + (0.00123 * Temperature@row * Temperature@row * [Relative Humidity]@row ) + (0.00085 * Temperature@row * [Relative Humidity]@row * [Relative Humidity]@row ) - (0 * Temperature@row * Temperature@row * [Relative Humidity]@row * [Relative Humidity]@row ))
As you can see, my actual calculation changes and rounds to the 5th decimal space.
So at a temperature of 80 degrees F with a relative humidity of 40%, the heat index should be 79.9. However the calculation in Smartsheet shows 100.23580. Definitely a number I cannot use!
Is there a way to prevent this from happening?