Filter out multiple items in Uniquee filter

rmrossetti

New Member
Joined
Jan 11, 2016
Messages
29
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

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.
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,215,282
Messages
6,124,052
Members
449,139
Latest member
sramesh1024

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