Calling up Currency Value From Another Sheet

Mina_Minic

New Member
Joined
Jan 27, 2020
Messages
2
Office Version
  1. 2007
Platform
  1. Windows
I'm trying to call up a dollar value from another sheet to my quote sheet.
I want the cell to have text followed by the amount. Example "cost of the dark scheme is $1,234"
My current formula works as far as to bring up the value, but not in currency format.
This is what I have now:
="cost of the dark scheme is" &'sheet2!G10
It works but the outcome has no currency formatting even though the cell that it is calling it up from is correctly formatted; it just spits out a number rounded to 3 decimal places and no dollar sign.
Can anyone help please?
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Formatting does not get across when referencing a cell. Formatting is just decoration. The formula only pulls the underlying value.

Therefore you need to apply the formatting to the value. If you combine the value with another piece of text, you can wrap the reference to the other cell into a TEXT() function with a formatting string.

try

="cost of the dark scheme is " &text('sheet2'!G10 ,"$#,##0.00")
 
Upvote 0

Forum statistics

Threads
1,214,647
Messages
6,120,722
Members
448,987
Latest member
marion_davis

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