PC Review


Reply
Thread Tools Rate Thread

Concatenate and Format of result...

 
 
Brad
Guest
Posts: n/a
 
      22nd May 2007
I have a simple formula that concatenate values from several cells:

=CONCATENATE(ROUND(D223,0), " ",ROUND(D224,0), " ",ROUND(D225,0), " on
",D227).

D223, D224 and D225 need 1000 comma separators in the result so that D223,
for example, would read 195,844 and not 195844 in the concatenated string.
As it is, these three cells do have the thousands separator format but the
format doesn't transfer to the concatenated result.

My thanks in advance for any suggestions here.

Cheers! Brad



 
Reply With Quote
 
 
 
 
Bob Phillips
Guest
Posts: n/a
 
      22nd May 2007
=TEXT(ROUND(D223,0),"#,##0")&" "&TEXT(ROUND(D224,0),"#,##0")&"
"&TEXT(ROUND(D225,0),"#,##0")&" on "&D227

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Brad" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I have a simple formula that concatenate values from several cells:
>
> =CONCATENATE(ROUND(D223,0), " ",ROUND(D224,0), " ",ROUND(D225,0), " on
> ",D227).
>
> D223, D224 and D225 need 1000 comma separators in the result so that D223,
> for example, would read 195,844 and not 195844 in the concatenated string.
> As it is, these three cells do have the thousands separator format but the
> format doesn't transfer to the concatenated result.
>
> My thanks in advance for any suggestions here.
>
> Cheers! Brad
>
>
>



 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      22nd May 2007
You can use:

=concatenate(text(round(d233,0),"#,##0"), " ", ....

or just use the & operator

=text(round(d233,0),"#,##0") & " " &....



Brad wrote:
>
> I have a simple formula that concatenate values from several cells:
>
> =CONCATENATE(ROUND(D223,0), " ",ROUND(D224,0), " ",ROUND(D225,0), " on
> ",D227).
>
> D223, D224 and D225 need 1000 comma separators in the result so that D223,
> for example, would read 195,844 and not 195844 in the concatenated string.
> As it is, these three cells do have the thousands separator format but the
> format doesn't transfer to the concatenated result.
>
> My thanks in advance for any suggestions here.
>
> Cheers! Brad


--

Dave Peterson
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help: Using CONCATENATE (and a COUNT?) for a total result Jas Microsoft Excel Misc 3 30th Jan 2010 07:58 PM
How to concatenate 3064 and 01 with 306401 as a result? =?Utf-8?B?TVNPQ2hpY2s=?= Microsoft Excel Worksheet Functions 11 1st Nov 2006 05:26 AM
I need help! How to concatenate and render the result? martin242 Microsoft Excel Misc 2 12th May 2004 03:11 PM
using & to concatenate result is yuck Jamie Microsoft Excel Worksheet Functions 3 9th Apr 2004 06:29 PM
Evaluate result of CONCATENATE() rocketslinger Microsoft Excel Misc 10 5th Apr 2004 10:37 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:23 AM.