I don't wish to round my values, I want to just truncate the end of my data.
Public Function t1() As Currency
Dim A1 As Currency
Dim A2 As Single
A1 = 2.01
A2 = 2.0072121
t1 = A1 * A2
End Function
in the intermediate
?t1
t1 show 4 decimal places, If i use formatnumber/formatcurrency with the 2 decimal place argument then the value gets rounded. I am not looking to round.
Should I evaluate the number like a string and use a Mid function to make the data only return 2 decimals without rounding?