Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a value in Cell B1 that is expressed as dollars such as $52,344. I
would like to format this value within a formula that returns text. For example in Cell B2, I would put ="The sum that is in Cell B1 is "&b1&"." Now I want the value in B1 to be reflected within the results of my formula. I want the result to read: The sum that is in Cell B1 is $52,344. How do I do this? |
#2
![]() |
|||
|
|||
![]()
="The sum that is in Cell B1 is "&TEXT(b1,$#,##0.00")&"."
-- HTH RP (remove nothere from the email address if mailing direct) "packmule" wrote in message ... I have a value in Cell B1 that is expressed as dollars such as $52,344. I would like to format this value within a formula that returns text. For example in Cell B2, I would put ="The sum that is in Cell B1 is "&b1&"." Now I want the value in B1 to be reflected within the results of my formula. I want the result to read: The sum that is in Cell B1 is $52,344. How do I do this? |
#3
![]() |
|||
|
|||
![]()
Use the TEXT function,
="The sum that is in Cell B1 is "&=TEXT(B1,"$00,0")&"." "packmule" wrote in message ... I have a value in Cell B1 that is expressed as dollars such as $52,344. I would like to format this value within a formula that returns text. For example in Cell B2, I would put ="The sum that is in Cell B1 is "&b1&"." Now I want the value in B1 to be reflected within the results of my formula. I want the result to read: The sum that is in Cell B1 is $52,344. How do I do this? |
#4
![]() |
|||
|
|||
![]()
Thanks to both of you. This is exactly what I needed.
"Bob Phillips" wrote: ="The sum that is in Cell B1 is "&TEXT(b1,$#,##0.00")&"." -- HTH RP (remove nothere from the email address if mailing direct) "packmule" wrote in message ... I have a value in Cell B1 that is expressed as dollars such as $52,344. I would like to format this value within a formula that returns text. For example in Cell B2, I would put ="The sum that is in Cell B1 is "&b1&"." Now I want the value in B1 to be reflected within the results of my formula. I want the result to read: The sum that is in Cell B1 is $52,344. How do I do this? |
#5
![]() |
|||
|
|||
![]() Correction: ="The sum that is in Cell B1 is "&DOLLAR(B1;3)&"." |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Maintaining cell reference after sorting | Excel Discussion (Misc queries) | |||
Cell Reference Math | Excel Worksheet Functions | |||
GET.CELL | Excel Worksheet Functions | |||
name of another worksheet in cell for reference | Excel Worksheet Functions | |||
cell reference show cell name (ie. D45) and not cell value | Excel Worksheet Functions |