How to convert into Lacs ( ie.100000)

ramakrishnan_1731

Board Regular
Joined
Jun 11, 2007
Messages
73
Dear Experts,

In a work sheet i have a colum of numbers. I want to convert these into lacs ( divide by 100000 ). Now i am inserting one column next to the column of numbers and using foumula = a1/100000 copy these till the end of the colum the copy paste special and values.

Is there any other methord with out inserting a coulmm.
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Hi,

Enter 100000 in a spare cell, copy it, select the column of numbers and then paste special with the divide option selected.

Dom
 
Upvote 0
I would recommend that you do *not* replace the original data. Use the 2nd column to compute the numbers in lacs and then use this 2nd column for further analysis. This provides an easy to follow audit trail of the process.

Dear Experts,

In a work sheet i have a colum of numbers. I want to convert these into lacs ( divide by 100000 ). Now i am inserting one column next to the column of numbers and using foumula = a1/100000 copy these till the end of the colum the copy paste special and values.

Is there any other methord with out inserting a coulmm.
 
Upvote 0
Format as :- #\.00000

Or perhaps :- #\,00000

If you need full Indian currency formatting then :

For numbers up to 9 digits (and 2 decimal places), format the cells as follows ;-

[>=10000000]##\,##\,##\,##0.00;[>=100000]##\,##\,##0.00;##,##0.00

If your numbers are likely to exceed 9 digits, amend the format accordingly.

To save typing the format to start with, select a cell and run this :-

Code:
Selection.NumberFormat = "[>=10000000]##\,##\,##\,##0.00;[>=100000]##\,##\,##0.00;##,##0.00"

The number format should now be in your custom format listing.
 
Upvote 0
Hi, Would you know how to modify this formula to include larger numbers such as 1892,23,13,258.26 and negative numbers such as -1,241,657,500.00 - all in one.
 
Upvote 0

Forum statistics

Threads
1,218,217
Messages
6,141,210
Members
450,342
Latest member
vag_a_bond73

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top