Comparing Data in Excel

  • Thread starter Thread starter Pree
  • Start date Start date
P

Pree

No, I did see this link. It seems these instructions are for whe
you're looking at one column of data only. I've tried to manipulat
the formula to include two columns but I've been unsuccessful a
getting a formula that works
 
You can concatenate cells with a formula like:

=a1&b1

But I'd use a separator between those cells so you don't have to worry about two
concatenated strings looking the same--but the separate cells are different:

abcd efgh
and
abcdef gh

would look like:
abcdefgh (in both cases).

Something like:
=a1&"---"&b1
or
=a1&char(10)&b1

But use a unique string that doesn't occur in either column.

Then copy this formula down the column.
 

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