ADD two cell's and add comma!!!!

buddy1000

Active Member
Joined
Oct 31, 2007
Messages
294
I have in cell A1 5000
and in cell B1 50

the original figure is 5000,50

Does anyone know a formula in cell C1 that will add cell A1+cell B1 and place the comma as indicated.

I tried Concatenate but it gives 500050 and disregards the comma.
Any ideas?
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Can you use:

=A1&","&B1

Or this works for me with concatenate:

=CONCATENATE(A1,",",B1)

Hope that helps.
 
Upvote 0
and your santity buddy, concatenate would work but with

=CONCATENATE(A1,",",A2)

or

=CONCATENATE(A1,CHAR(34),A2)

I prefer the latter as I find it easier to make sense of at a glance.
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,691
Members
449,117
Latest member
Aaagu

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