Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to concatenate two cells which are in 2 different formats:
Cell A1: $5,000,000 Cell B1: 16.90% So, in Cell C1, I am trying to say the following: $5,000,000 or 16.9% I am trying to do a concatenation..however the percentage is turning into decimals and I am losing the currency format as well What would be the best way of dealing with this..Thanks Regards, Shams. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() "Shams" wrote: I am trying to concatenate two cells which are in 2 different formats: Cell A1: $5,000,000 Cell B1: 16.90% So, in Cell C1, I am trying to say the following: $5,000,000 or 16.9% I am trying to do a concatenation..however the percentage is turning into decimals and I am losing the currency format as well What would be the best way of dealing with this..Thanks Regards, Shams. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=TEXT(A1,"$#,###.00") & " or " & TEXT(B1,"#.##%")
Hope this works for you "Shams" wrote: I am trying to concatenate two cells which are in 2 different formats: Cell A1: $5,000,000 Cell B1: 16.90% So, in Cell C1, I am trying to say the following: $5,000,000 or 16.9% I am trying to do a concatenation..however the percentage is turning into decimals and I am losing the currency format as well What would be the best way of dealing with this..Thanks Regards, Shams. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I didn't see any reply text in your message!! "Shams" wrote: I am trying to concatenate two cells which are in 2 different formats: Cell A1: $5,000,000 Cell B1: 16.90% So, in Cell C1, I am trying to say the following: $5,000,000 or 16.9% I am trying to do a concatenation..however the percentage is turning into decimals and I am losing the currency format as well What would be the best way of dealing with this..Thanks Regards, Shams. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe, something like this:
=TEXT(A1,"$ #")&" or: "&TEXT(B1,"#.## %") Micky "Shams" wrote: I am trying to concatenate two cells which are in 2 different formats: Cell A1: $5,000,000 Cell B1: 16.90% So, in Cell C1, I am trying to say the following: $5,000,000 or 16.9% I am trying to do a concatenation..however the percentage is turning into decimals and I am losing the currency format as well What would be the best way of dealing with this..Thanks Regards, Shams. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Mickey and pmartglass,
Thanks to both of you for the tip..yes the formula works perfectly!! "Shams" wrote: I am trying to concatenate two cells which are in 2 different formats: Cell A1: $5,000,000 Cell B1: 16.90% So, in Cell C1, I am trying to say the following: $5,000,000 or 16.9% I am trying to do a concatenation..however the percentage is turning into decimals and I am losing the currency format as well What would be the best way of dealing with this..Thanks Regards, Shams. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to add new currency Symbol in Format/Cell/Currency | Excel Discussion (Misc queries) | |||
TextBox on a userform - format to currency & percent | Excel Discussion (Misc queries) | |||
Same column Percent and Currency | Excel Discussion (Misc queries) | |||
Currency, Percent and Comma Style buttons | Excel Worksheet Functions | |||
Formatting a number to look like a Percent without a percent sign | Excel Discussion (Misc queries) |