Need to merge multiple cell data into a new cell.

  • Thread starter Thread starter zeebop
  • Start date Start date
Z

zeebop

Hi,

I was wondering if someone could help me with an Excel function.
What I would like to do is automatically merge some cell data:

For example, i have a csv file with columns, infoline1, infoline2,
infoline3 etc..
I would like to create a new column, totalinfo, and I would like it to
be a collection of all the data found in the infoline1, infoline2
etc.. columns.

In addition, everytime new column data is added in I would like the
text <BR><BR> to be inserted. So effectivly each columns data is
seperated by <BR><BR>
Make sense?

An example file is here:
http://www.poweryard.com/example.csv
Row 2 has the added data.

Thanks for any pointers,

zeebop
 
Maybe
=IF(AND(A2="",B2="",C2=""),"",IF(A2<>"",A2,)&IF(B2<>"",IF(A2<>"","<BR>",)&B2,)&IF(C2<>"",IF(B2<>"","<BR>",)&C2,))
 

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