Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The above formula, a conversion of US dollars to Japanese yen, is returned as
"6050000000000 yen" (6.05 trillion yen) as opposed to 6,050,000,000,000 yen Is there a way to force the commas to appear? Right now, as the formula stands, CONCATENATE treats 50*10^9*121 as text, not a number. (121 is the amount of USD per 1 JPY). (Yes this question could be avoided by formatting the calculation as currency and giving it the yen symbol. But I've been asked to do it this way. Odd, I know.) Thanks for any ideas. Dave -- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=CONCATENATE(TEXT(50*10^9*121,"#,#,#,#"), " yen")
-- David Biddulph "Dave F" wrote in message ... The above formula, a conversion of US dollars to Japanese yen, is returned as "6050000000000 yen" (6.05 trillion yen) as opposed to 6,050,000,000,000 yen Is there a way to force the commas to appear? Right now, as the formula stands, CONCATENATE treats 50*10^9*121 as text, not a number. (121 is the amount of USD per 1 JPY). (Yes this question could be avoided by formatting the calculation as currency and giving it the yen symbol. But I've been asked to do it this way. Odd, I know.) Thanks for any ideas. Dave |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use the text function to specify the formatting:
=TEXT(50 * 10 ^ 9 * 121,"#,###") & " yen" "Dave F" wrote: The above formula, a conversion of US dollars to Japanese yen, is returned as "6050000000000 yen" (6.05 trillion yen) as opposed to 6,050,000,000,000 yen Is there a way to force the commas to appear? Right now, as the formula stands, CONCATENATE treats 50*10^9*121 as text, not a number. (121 is the amount of USD per 1 JPY). (Yes this question could be avoided by formatting the calculation as currency and giving it the yen symbol. But I've been asked to do it this way. Odd, I know.) Thanks for any ideas. Dave -- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Great, thanks.
-- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. "David Biddulph" wrote: =CONCATENATE(TEXT(50*10^9*121,"#,#,#,#"), " yen") -- David Biddulph "Dave F" wrote in message ... The above formula, a conversion of US dollars to Japanese yen, is returned as "6050000000000 yen" (6.05 trillion yen) as opposed to 6,050,000,000,000 yen Is there a way to force the commas to appear? Right now, as the formula stands, CONCATENATE treats 50*10^9*121 as text, not a number. (121 is the amount of USD per 1 JPY). (Yes this question could be avoided by formatting the calculation as currency and giving it the yen symbol. But I've been asked to do it this way. Odd, I know.) Thanks for any ideas. Dave |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks.
-- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. "bpeltzer" wrote: Use the text function to specify the formatting: =TEXT(50 * 10 ^ 9 * 121,"#,###") & " yen" "Dave F" wrote: The above formula, a conversion of US dollars to Japanese yen, is returned as "6050000000000 yen" (6.05 trillion yen) as opposed to 6,050,000,000,000 yen Is there a way to force the commas to appear? Right now, as the formula stands, CONCATENATE treats 50*10^9*121 as text, not a number. (121 is the amount of USD per 1 JPY). (Yes this question could be avoided by formatting the calculation as currency and giving it the yen symbol. But I've been asked to do it this way. Odd, I know.) Thanks for any ideas. Dave -- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to concatenate into "B1" B2 thru B"x" based on new data in "Col A" | Excel Discussion (Misc queries) | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
Complex if test program possible? If "value" "value", paste "value" in another cell? | Excel Discussion (Misc queries) | |||
Insert "-" in text "1234567890" to have a output like this"123-456-7890" | Excel Discussion (Misc queries) |