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

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
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,215,061
Messages
6,122,921
Members
449,094
Latest member
teemeren

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