G Guest Jun 1, 2005 #1 If i have a '13.75' in a cell, I would like to display just the .75 in another cell. How do I do this?
If i have a '13.75' in a cell, I would like to display just the .75 in another cell. How do I do this?
N N Harkawat Jun 1, 2005 #2 =a1-int(a1) where cell A1 holds 13.75 and that 13.75 is NOT text If its a text field then =VALUE(RIGHT(A1,FIND(".",A1)))
=a1-int(a1) where cell A1 holds 13.75 and that 13.75 is NOT text If its a text field then =VALUE(RIGHT(A1,FIND(".",A1)))
D Daniel CHEN Jun 1, 2005 #4 Try the following formula: =A1-INT(A1) A1 = 13.75, INT(A1) = 13, Result = 13.75-13 = 0.75 ===== * ===== * ===== * ===== Daniel CHEN Spreadsheet/VBA Specialist (e-mail address removed) www.Geocities.com/UDQServices Your "Impossible" Task Could Be Someone Else's "Piece of Cake" ===== * ===== * ===== * =====
Try the following formula: =A1-INT(A1) A1 = 13.75, INT(A1) = 13, Result = 13.75-13 = 0.75 ===== * ===== * ===== * ===== Daniel CHEN Spreadsheet/VBA Specialist (e-mail address removed) www.Geocities.com/UDQServices Your "Impossible" Task Could Be Someone Else's "Piece of Cake" ===== * ===== * ===== * =====