I have a excel sheet with cell value 0.010, 0.020 etc., I want to get the values 3 digits after the decimal ie., "010" "020" etc., If I use the Right function Right(cell,3) it returns me ".01" ".02". The reason is the Right function ignores the "0" at the end of decimal point. Is there any other function that accomplish this.
+2
A:
You probably first need to convert the numeric value to a string:
=RIGHT(TEXT(CELL,"0.000"),3)
JYelton
2010-08-31 22:45:02
Yelton... I was about to post this solution and you got it... thanks.
Kannabiran
2010-08-31 23:11:19