Hi
I want to set the decimal places for the number 123.45678
I know I can use format(123.45678,"##0.00") to get 123.46
But I want to be able to change the decimal format at run time, so can you change the "##0.00" string to a number variable eg
format(123.45678, 2) to get 123.45
Thanks
Kelvin
I want to set the decimal places for the number 123.45678
I know I can use format(123.45678,"##0.00") to get 123.46
But I want to be able to change the decimal format at run time, so can you change the "##0.00" string to a number variable eg
format(123.45678, 2) to get 123.45
Thanks
Kelvin