Quick answer, maybe wrong but.....
X looks like it may not always be an integer or whole number try declaring as something else
Hey thanks Jethro, that did the trick!
hey thanks, all i had to do was change the X to a varient insteed of an integer,
X is the value of Fahernhite!
For instance:
Code:
Public Function ConversionFtoC(X As Integer)
ConversionFtoC = Int((X - 32) * 5 / 9) ' X is wahtever number the inputbox puts in, like say i type in 32 that will make that X = 32 and then the FUnction will be (32-32)*5/9) adn that will = 0 degrees celcis! i don't think i have been spelling celcis right... but anyways i think that answers your question, and thanks for answering mine!