How to add dollar signs and commas to the CONCATENATE formula

Cicely2011

New Member
Joined
May 6, 2017
Messages
1
I am using the following formulas, but I cannot figure out how to get my result to include a dollar sign and commas to appear as currency. Can someone show me where I need to put edits?

=CONCATENATE("You want to make $",ROUND($D$7/($D$8/12),0), " per year?")

Currently producing: You want to make $500000 per year?

=CONCATENATE("You need to make ",ROUND(D7/D8,0)," per month")

Currently producing: You need to make 41667 per month.

=CONCATENATE("That's about ",ROUND(D7/D8/30,0)," per day")

Currently producing: That's about 1389 per day.

I need them to say You want to make $500,000 per year? You need to make $41,667 per month. That's about $1,389 per day.
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Try

=CONCATENATE("You need to make ",TEXT(ROUND(D7/D8,0),"$#,##0")," per month")
 
Upvote 0
Looks like you just want to combine all of those?
If so, then maybe this?
="You want to make $"&ROUND($D$7/($D$8/12),0)& " per year?"&" You need to make "&ROUND(D7/D8,0)&" per month"&" That's about "&ROUND(D7/D8/30,0)&" per day")
 
Upvote 0

Forum statistics

Threads
1,214,996
Messages
6,122,636
Members
449,092
Latest member
bsb1122

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