Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to combine two different cells that contain dollars and text. when I
try it always drops the $ sign. How do I do this? Example cell A2=$40 and cell A3 is per year, I want in one cell $40 per year. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I suspect the $ sign in a2 is a format so try this
=TEXT(A2,"$"&0)&" "&A3 Mike "Kesbutler" wrote: I want to combine two different cells that contain dollars and text. when I try it always drops the $ sign. How do I do this? Example cell A2=$40 and cell A3 is per year, I want in one cell $40 per year. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
="$" & A2 & " " & A3
-- Gary''s Student - gsnu200804 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
these both get me the $ but now they drop the comma's for larger numbers like
$4,000,000 and I am working with millions so I need it. "Gary''s Student" wrote: ="$" & A2 & " " & A3 -- Gary''s Student - gsnu200804 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=TEXT(A2,"$#,##0") & " " & A3
This formula makes no cents. -- Gary''s Student - gsnu200804 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=TEXT(A2,"$#,##0.00") & " " & A3
Gord Dibben MS Excel MVP On Thu, 11 Sep 2008 07:38:00 -0700, Kesbutler wrote: these both get me the $ but now they drop the comma's for larger numbers like $4,000,000 and I am working with millions so I need it. "Gary''s Student" wrote: ="$" & A2 & " " & A3 -- Gary''s Student - gsnu200804 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dollars to text without loosing zeros from decimal places | Excel Worksheet Functions | |||
convert $10.20 to text ...Ten Dollars &20/100 | Excel Discussion (Misc queries) | |||
Convert $12.00 to text (Twelve dollars) like you would on a chec.. | Excel Worksheet Functions | |||
How do I convert dollars and cents to text, and prefill the cell . | Excel Worksheet Functions | |||
converting #dollars into word dollars? | Excel Worksheet Functions |