Number format to display as 1,000,000

Chandresh

Board Regular
Joined
Jul 21, 2009
Messages
146
Hi Team,
I am using the below formula for converting the number format to million formats however the same is not happening
=IF(ISTEXT(B4),B4, "")&TEXT(C4,"#,##0;;@")
the output is coming as 1,20,00,000 however I need the number as 12,000,000 could you please help

Thanks
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi,

What is in B4 and C4?
Why use TEXT function?
 
Upvote 0
Hi,

What is in B4 and C4?
Why use TEXT function?


I am creating one paragraph with text at the start and at the end I have to plot the amount so B4 is the text and C4 is the amount.
  • For example, my sentence will be like this - I have to pay RS 12,000,000

B4 value = I have to pay RS

C4 value =12000000
 
Upvote 0
it is working for me: (but I think you need a spacing space inbetween.)
Mr Excel Questions 3.xlsm
ABCD
4text12500000text12,500,000
581250000012,500,000
61250000012,500,000
Sheet6
Cell Formulas
RangeFormula
D4:D6D4=IF(ISTEXT(B4),B4,"")& TEXT(C4,"#,##0;;@")
 
Upvote 0
what is the regional setting on your computer for the the thousands separator?
 
Upvote 0
It looks like if your regional settings use a "." as the thousands separator, you cannot override it in a custom number format or TEXT Function format argument.
 
Upvote 0
Maybe you can get around the issue by using the words million with a decimal of your regional format:
what I would use #.0,, "Million";;@, a suggestion for you: #,0.. "Million";;@
 
Upvote 0

Forum statistics

Threads
1,215,214
Messages
6,123,664
Members
449,114
Latest member
aides

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