Help using FILTER

Paulypaul

New Member
Joined
Jan 30, 2024
Messages
5
Office Version
  1. 365
Platform
  1. Windows
I'd like to add a dashboard tab to my Excel file, which will display filtered data from rows in another tab, dependent upon their date range (start and finish date) values are still valid for this week (e.g. they are still live/have started but not reached the finished date yet).
The purpose of this is to show management a current list of live actions with their corresponding Task name, status, etc. I have highlighted in yellow the columns I wish to display for each Action row.

I've tried referencing two manually-added start and finish dates in my dashboard (e.g. "29/01/2024" & "04/02/2024"), using this formula..
=FILTER(Actions!A:Q,(ROW(Actions!A:Q)=1)+(A1<=Actions!A:A)*(A2>=Actions!B:B))

I know this formula is both incorrect and doesn't select which columns of data I want to display.

Is anyone able to help me? That would be fantastic. Many thanks in advance.

Screenshot 2024-01-31 124857.png
 
The 1,2,5,6,8,9,10,16,17 part is the column numbers to return data from, so you can add/remove those as needed.
I meant can I display only the actions rows for Project 1? (where rows have a tick symbol in column H).
 
Upvote 0

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Oh, yes - just add that into the filter: *(Actions!K:K="your tick symbol")
 
Upvote 0
What exactly is in those columns if you look at the formula bar?
 
Upvote 0
Oh, yes - just add that into the filter: *(Actions!K:K="your tick symbol")
=FILTER(CHOOSECOLS(Actions!A2:Q1000,1,2,5,6,8,9,10,12,16,17),(C24>=Actions!K2:K1000)*(C25<=Actions!L2:L1000)*(Actions!H:H="✔"))
I tried adding that into the filter (the "✔" marks are in column "H").
I get a "#Value!" error.
 
Upvote 0
Change the last condition to use the same rows as the others, not whole columns
 
Upvote 0

Forum statistics

Threads
1,215,068
Messages
6,122,950
Members
449,095
Latest member
nmaske

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