Hello guys,
How do you round-off a value with 2 decimals places only?
I have already format the textbox for this data type but it still displays 10 decimal places...please help?:wave:
Printable View
Hello guys,
How do you round-off a value with 2 decimals places only?
I have already format the textbox for this data type but it still displays 10 decimal places...please help?:wave:
Code:
yourvalue = Round(yourvalue, 2) or yourvalue = Format(yourvalue, "0.00")
thanks!