Multiple Tabs Help - Display Any "unchecked" Items

beehy

New Member
Joined
Apr 6, 2011
Messages
2
Hi there,

First time poster...

I have created a Timeline task list in excel that uses multiple tabs.
Each tab represents a month, and each month has a to do list.
I set these lists up so that once a task is completed, you double click the "Done?" column and a check mark appears.

What I would like to do, is create another tab that pulls all outstanding items from each of the 12 to do list tabs. (An outstanding items list). Ideally I would like this sheet to pull the entire row of any item that does not have a checkmark in the "Done?" column for the whole workbook.

I've tried searching through boards to find a solution to this and have not been able to find anything.

Please help :(

Thanks!
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Still struggling with this one, if anyone has some suggestions I'll be happy to see them!

Thanks :)
 
Upvote 0
It would be easier if you entered X in a column (say A) to denote done then use code like

Code:
Sub Summary()
Dim i As Long, LR As Long, j As Long
For i = 1 To 12
    With Sheets(i)
        LR = .Range("A" & Rows.Count).End(xlUp).Row
        For j = 1 To LR
            If .Range("A" & j).Value = "" Then .Rows(j).Copy Destination:=Sheets("Summary").Range("A" & Rows.Count).End(xlUp).Offset(1)
        Next j
    End With
Next i
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,828
Members
452,946
Latest member
JoseDavid

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top