combine two numbers -- not add

  • Thread starter Thread starter KevinS
  • Start date Start date
K

KevinS

I want to take the numbers from two columns and combine - but them. For
instance:

Column A = 01
Column B = 101
Column C will equal 01101
What function will i use to achieve this?
Thank you,
Kevin
 
Be advised that the result will be text, though, and you will not be able to perforn mathematical functions with it.
so if you want the result to be a value, try something like
=Value(A1&B1)
 
Dave Peterson said:
And maybe...

=text(a1,"00")&text(b1,"000")

if those are really numbers.

Well, that appears superfluous to me, AFAIK.
I just ran a test sample, and values are concatenated just like strings by the "&" operator. So Text function is not really needed, whereas if you want to receive the result as a value, the Value function will be necessary.
 

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