G Guest Jun 24, 2005 #1 Anyone knows how I can format a cell to show decimals only. Not the whole number. E.g. 4,56 should show 56 Regards, Reidar
Anyone knows how I can format a cell to show decimals only. Not the whole number. E.g. 4,56 should show 56 Regards, Reidar
G Guest Jun 24, 2005 #2 Hi Have a look at the MOD function. Something like =MOD(4.56,1) should do the trick.
G Guest Jun 24, 2005 #3 Hi, It rbought me half way. The result in the cell shows 0.56 but I want to se only the decimals 56 Any idea? Regards, Reidar
Hi, It rbought me half way. The result in the cell shows 0.56 but I want to se only the decimals 56 Any idea? Regards, Reidar
A Anne Troy Jun 24, 2005 #4 Use the MOD, then format the cell with a custom format of: .00 Hope it helps! ******************* ~Anne Troy www.OfficeArticles.com www.MyExpertsOnline.com
Use the MOD, then format the cell with a custom format of: .00 Hope it helps! ******************* ~Anne Troy www.OfficeArticles.com www.MyExpertsOnline.com
G Guest Jun 24, 2005 #5 Hi, Getting closer. I now get a "comma" in fron of the number like this ,56 How to get rid of the comma? Reidar
Hi, Getting closer. I now get a "comma" in fron of the number like this ,56 How to get rid of the comma? Reidar
A Anne Troy Jun 24, 2005 #6 If you don't want the decimal, then just change the formula to: =MOD(A1,1)*100 ******************* ~Anne Troy www.OfficeArticles.com www.MyExpertsOnline.com
If you don't want the decimal, then just change the formula to: =MOD(A1,1)*100 ******************* ~Anne Troy www.OfficeArticles.com www.MyExpertsOnline.com