Hi, i'm new to Excel VBA. I'm trying to create the same UDF as the centigrade to fahrenheit one. Tried to create a new one with same structure as the sample code, just different naming, but the result is zeros for every value of C. Could anyone help?
Code:
Function CtoF(degreeC)
degreeCtoF = degreeC * 9 / 5 + 32
End Function