Doubts in excel

Excel 2850 views 9 replies

Hi,

Very often I come across a typical problem while working with excel.For example 1.57+1.57=3.14. If I decrease the decimal I get 2+2=3.Though calculation is correct it appears as if the Balance Sheet is not tallied.Could anybody suggest a solution?

Replies (9)
USE ROUND FORMULA FOR GOOD RESULT
Dharmendra is right use round formula from "Insert" or in address bar just type =ROUND(1.57,0). then you got good result
Dharmendra is right use round formula from "Insert" or in address bar just type =ROUND(1.57,0). then you got good result
Thank you for the reply.But I want to make changes to entire work sheet and not to a particular cell.Is there any formula?
hi, u should show upto one decimal otherwise no remedy for all this
Use following VBA code after selecting a range of your financial statement. Sub Add_Round() For Each xcell In Selection If xcell.Value <> "" Then If IsNumeric(xcell.Value) Then xcell.Value = "=round(" & xcell.Value & ",2)" End If End If Next End Sub
Mr. Vikram Pandya... Very good Suggestion.. it will be a great help to him... thnks..

Very good macro by Vikram.....

Just that in the code....last Endif must be deleted....only one Endif is enough..

This macro can be kept as a toolbar icon...so that we can use it by just clicking on it....

Regards,

gurusanthanam


CCI Pro

Leave a Reply

Your are not logged in . Please login to post replies

Click here to Login / Register