View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ryguy7272 ryguy7272 is offline
external usenet poster
 
Posts: 2,836
Default Making two lines into one

Try something like this:

=A1&A2&A3

or

=TRIM(A1)&" "&SUBSTITUTE(TRIM(B1),CHAR(10),"")

If you need to use VBA, let post back.


"nabanco" wrote:

Hello,

Is there a way to combine row A and B into one row? For example, I have
data in both rows. Both rows are for the same borrower. I am trying to
combine row A and B into one row that has all the data both A and B had.

I know I can cut and paste each line, but the spreadsheet is large. Any
ideas?

Thank you