Seems like it should be easy?? How to format the referenced cell in this formula??

Related1

New Member
Joined
May 22, 2017
Messages
21
Hi all,

I have this line in a waiver: ="That the total amount of the contract including extras is $ "&D35&" prior to this payment on which he has received payment of $"&F35&" prior to this payment. "

Which produces this: "That the total amount of the contract including extras is $ 91855223 prior to this payment on which he has received payment of $ 2323312.11 prior to this payment"This seems pretty simple but it's not transferring the formatting of the referenced cell.

Could someone help me to get some commas and .00 in there??

Thanks!
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
You should use the TEXT function.
="That the total amount of the contract including extras is $ "&TEXT(D35," #,##0.00")&" prior to this payment on which he has received payment of $"&TEXT(F35,"0.00")&" prior to this payment. "
 
Upvote 0
="That the total amount of the contract including extras is " & DOLLAR(D35) & ...
 
Upvote 0
You should use the TEXT function.
="That the total amount of the contract including extras is $ "&TEXT(D35," #,##0.00")&" prior to this payment on which he has received payment of $"&TEXT(F35,"0.00")&" prior to this payment. "

PERFECT!! Thank you so much. It's hard to know what to look for when you can't describe it so I though using what I found was a great solution. Obviously not, yours worked perfectly!
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,613
Members
449,090
Latest member
vivek chauhan

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