ExcelExceller
New Member
- Joined
- Nov 9, 2015
- Messages
- 4
Hi,
I've gotten pretty good with Excel formulas, but this one has me stumped. I have a Workbook with 6 worksheets, one of which is blank. I want to copy the data from all the column As into column A of the blank worksheet (creating a summary page), without including any blank cells. So, when Sheet1 A:A is blank, move on to Sheet2, etc. I tried the formula below, and I get the values filled in for Sheet1 and anything in Sheet2 that starts after the row I left off on in Sheet 1. I need it to start back at the top though. I think I'm close, just if someone can give that extra push...The formula I have tried so far is:
I've gotten pretty good with Excel formulas, but this one has me stumped. I have a Workbook with 6 worksheets, one of which is blank. I want to copy the data from all the column As into column A of the blank worksheet (creating a summary page), without including any blank cells. So, when Sheet1 A:A is blank, move on to Sheet2, etc. I tried the formula below, and I get the values filled in for Sheet1 and anything in Sheet2 that starts after the row I left off on in Sheet 1. I need it to start back at the top though. I think I'm close, just if someone can give that extra push...The formula I have tried so far is:
Code:
=IFERROR(
INDEX('Sheet1'!B$3:B$998,
SMALL(
IF('Sheet1'!$AA$3:$AA$998=3,
ROW('Sheet1'!$B$3:$B$998)-ROW('Sheet1'!$B$3)+1),
ROWS($K$7:K8))),
IFERROR(
INDEX('Sheet2'!B$3:B$999,
SMALL(
IF('Sheet2'!$AA$3:$AA$999=3,
ROW('Sheet2'!$B$3:$B$999)-ROW('Sheet2'!$B$3)+1),
ROWS($K$7:K8))),
""))