Filter out multiple items in Uniquee filter

rmrossetti

New Member
Joined
Jan 11, 2016
Messages
30
Hello! I am currently trying to filter out Blanks, "Name" and "Contractor" from a list in another workbook. I only know how to filter out one value, which is blanks. How can I also filter out the other two criteria?

1712170119450.png
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
How about:

Excel Formula:
=UNIQUE(LET(ColumnToFilter,'[Role.Cost.Bill Rates 2024.xlsx]Sheet1'!$B:$B,FILTER(ColumnToFilter,
ISNUMBER(MATCH(ColumnToFilter,{"","Name","Contractor"},0))=FALSE)))
 
Upvote 0
How about
Excel Formula:
=LET(data,'[Role.Cost.Bill Rates 2024.xlsx]Sheet1'!$B:$B,UNIQUE(FILTER(data,(data<>"")*(data<>"Name")*(data<>"Contractor"))))
 
Upvote 0
Solution
How about
Excel Formula:
=LET(data,'[Role.Cost.Bill Rates 2024.xlsx]Sheet1'!$B:$B,UNIQUE(FILTER(data,(data<>"")*(data<>"Name")*(data<>"Contractor"))))[/Hello
[/QUOTE]

How about
Excel Formula:
=LET(data,'[Role.Cost.Bill Rates 2024.xlsx]Sheet1'!$B:$B,UNIQUE(FILTER(data,(data<>"")*(data<>"Name")*(data<>"Contractor"))))
Hello! Thank you for your responses, what does "Data" represent? Is this the info in Column B from my cost and rate sheet? Or do I simply type "Data"?
 
Upvote 0
It's just a variable that holds the range
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,216,216
Messages
6,129,566
Members
449,517
Latest member
Lsmich

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