DegreeC2K

Convert a Celsius temperature to a Kelvin temperature.
To convert Fahrenheit temperatures to Kelvin, use DegreeF2C, then use this one DegreeC2K

CodeFunctionName
What is this?

Public

Tested

Imported
Function DegreeC2K(CDegree)
DegreeC2K= CelsiusToKelvin(CDegree)
End Function

Function CelsiusToKelvin(DegVal)
CelsiusToKelvin= cdbl(cdbl(DegVal) + 273.15)
End Function

CDegree

Views 4,657

Downloads 1,456

CodeID
DB ID