View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Scott Scott is offline
external usenet poster
 
Posts: 87
Default another combine lists question

It depends on whether or not you want it sorted. If you just want a
list:
=IF(ROW(A2)-ROW($A$1)<=(COUNTA(Sheet1!$A:$A)-1),OFFSET(Sheet1!$A$1,ROW(A2)-ROW($A$1),0),IF(ROW(A2)-ROW($A$1)<=((COUNTA(Sheet1!$A:$A)-1)+COUNTA(Sheet2!$A:$A)-1),OFFSET(Sheet2!$A$1,ROW(A2)-ROW($A$1)-(COUNTA(Sheet1!$A:$A)-1),0),""))

This assumes that you have a header row on each sheet. (The result is
not sorted)

Scott

crs wrote:
I have another question about combining 2 excel lists into 1 list

scenario: I have a workbook with 3 sheets
Sheet 1 has a list of students in column A
Sheet 2 has a list of some more students in column A
(completely different from that of

Sheet 1)

Question: I want to combine the 2 lists into 1 single list of all
students onto Sheet 3 without just
copying and pasting because the lists will continually change and may
increase or decrease in size.

Any solutions.....

Thanks in advance!

CRS