Concatenated Formula

P

Phil Hageman

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

Chip Pearson

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?
 
F

Frank Kabel

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?
 
B

Bob Phillips

=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?
 
Top