M
Mrs. Robinson
How do I go from this formula
=INT(G20/12) & " ft. " & MOD(G20,12) & " in."
to a line in VBA that will perform in this function:
Function ConvertInches(intInches)
Dim intInches As Integer
Dim intFeet As Integer
ConvertInches = INT(intInches/12) & " ft. " & MOD(intInches,12) & " in."
End Function
I know I'm screwing it up but hopefully it's a simple fix.
Thanks,
=INT(G20/12) & " ft. " & MOD(G20,12) & " in."
to a line in VBA that will perform in this function:
Function ConvertInches(intInches)
Dim intInches As Integer
Dim intFeet As Integer
ConvertInches = INT(intInches/12) & " ft. " & MOD(intInches,12) & " in."
End Function
I know I'm screwing it up but hopefully it's a simple fix.
Thanks,