Concatenated Formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to add text after the results of a formula - something like: =C3 + "Units". What would the formula be?
 
Phil,

Use the & character. E.g.,

=C3&" Units"


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



message
I want to add text after the results of a formula - something
like: =C3 + "Units". What would the formula be?
 
=C3&"Units"
or
=C3&" Units"
Phil Hageman said:
I want to add text after the results of a formula - something like: =C3 +
"Units". What would the formula be?
 
Hi
you're nearly there:
=C3 & " Units"
-----Original Message-----
I want to add text after the results of a formula -
something like: =C3 + "Units". What would the formula be?
 
=c3 & " Units"

you might need to format the number like

=TEXT(C3,"#,##0.00") & " Units"

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

Phil Hageman said:
I want to add text after the results of a formula - something like: =C3 +
"Units". What would the formula be?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top