#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default CONCATENATE

I have the following cells
A1: D Roberts
B1: 56
C1: MAT
D1: 16,608.80

I need the sentance to read:
D Roberts 56 days $16,608.80 MAT

My formula is =CONCATENATE('Delinquent Loan 30 days'!A3," ",'Delinquent
Loan 30 days'!B3," days ","$",'Delinquent Loan 30 days'!D3, "
",'Delinquent Loan 30 days'!C3)

I am getting:
D Roberts 56 days $16608.8 MAT

How do I get my numbers to have the commas in them?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default CONCATENATE

Use the TEXT function. Try this:

=CONCATENATE('Delinquent Loan 30 days'!A3," ",'Delinquent
Loan 30 days'!B3," days ",TEXT('Delinquent Loan 30 days'!D3,"$#,##0.00"), "
",'Delinquent Loan 30 days'!C3)


HTH,
Elkar


"How to get commas in the #'s of concaten" wrote:

I have the following cells
A1: D Roberts
B1: 56
C1: MAT
D1: 16,608.80

I need the sentance to read:
D Roberts 56 days $16,608.80 MAT

My formula is =CONCATENATE('Delinquent Loan 30 days'!A3," ",'Delinquent
Loan 30 days'!B3," days ","$",'Delinquent Loan 30 days'!D3, "
",'Delinquent Loan 30 days'!C3)

I am getting:
D Roberts 56 days $16608.8 MAT

How do I get my numbers to have the commas in them?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default CONCATENATE

Hi,

As suggested, please us the TEXT() function. Also, you can use he & instead
of CONCATENATE() I.e. use str1&str2 etc.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"How to get commas in the #'s of concaten" <How to get commas in the #'s of
wrote in message
...
I have the following cells
A1: D Roberts
B1: 56
C1: MAT
D1: 16,608.80

I need the sentance to read:
D Roberts 56 days $16,608.80 MAT

My formula is =CONCATENATE('Delinquent Loan 30 days'!A3," ",'Delinquent
Loan 30 days'!B3," days ","$",'Delinquent Loan 30 days'!D3, "
",'Delinquent Loan 30 days'!C3)

I am getting:
D Roberts 56 days $16608.8 MAT

How do I get my numbers to have the commas in them?


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 857
Default CONCATENATE

Hi,

I think it is easier to use the concatenation operator:

='Delinquent Loan 30 days'!A3&" "&'Delinquent Loan 30 days'!B3&" days
"&TEXT('Delinquent Loan 30 days'!D3,"$#,##0.00")& " "&'Delinquent Loan 30
days'!C3

And it make the formula shorter.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"How to get commas in the #'s of concaten" wrote:

I have the following cells
A1: D Roberts
B1: 56
C1: MAT
D1: 16,608.80

I need the sentance to read:
D Roberts 56 days $16,608.80 MAT

My formula is =CONCATENATE('Delinquent Loan 30 days'!A3," ",'Delinquent
Loan 30 days'!B3," days ","$",'Delinquent Loan 30 days'!D3, "
",'Delinquent Loan 30 days'!C3)

I am getting:
D Roberts 56 days $16608.8 MAT

How do I get my numbers to have the commas in them?

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default CONCATENATE

Try this:

=CONCATENATE(A1," ",B1," days ",DOLLAR(D1)," ",C1)


"How to get commas in the #'s of concaten" wrote:

I have the following cells
A1: D Roberts
B1: 56
C1: MAT
D1: 16,608.80

I need the sentance to read:
D Roberts 56 days $16,608.80 MAT

My formula is =CONCATENATE('Delinquent Loan 30 days'!A3," ",'Delinquent
Loan 30 days'!B3," days ","$",'Delinquent Loan 30 days'!D3, "
",'Delinquent Loan 30 days'!C3)

I am getting:
D Roberts 56 days $16608.8 MAT

How do I get my numbers to have the commas in them?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
CONCATENATE countrygirl0712 Excel Discussion (Misc queries) 7 February 24th 06 06:39 PM
Concatenate Jordan Excel Worksheet Functions 3 February 23rd 06 11:59 PM
I know how to concatenate ,can one de-concatenate to split date? QUICK BOOKS PROBLEM- New Users to Excel 1 July 26th 05 05:07 PM
concatenate jeanette.rimmer Excel Worksheet Functions 3 July 25th 05 11:41 AM
Un - Concatenate? JudithJubilee Excel Worksheet Functions 2 July 11th 05 09:57 AM


All times are GMT +1. The time now is 10:19 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"