Forum Discussion
TheTeam35
4 years agoFrequent Visitor
Filter with in operator
Hi all, I want to use "in" filter such as ms SQL Where Shipment in (1234,5689,9856) How do I do in Power BI? For example; I have 50 shipments number. (They're dynamic shipments.) I want to ...
- 4 years ago
Hi,
The report has more than 30K shipments.
I want to search sometimes 50 shipments 100 shipments.
I want to copy and paste shipments in a filter or slicer and get the report.So, how can I do this?
Thanks.
- 4 years ago
Hi, TheTeam35
You can try use 'Filter by List' Custom Visual. The 'Filter by List' visual allows you to easily copy and paste in a list of values that you wish to filter on your report.
Best Regards,
Community Support Team _ Eason
AlexisOlson
Super User
4 years agoYou can use the IN syntax in DAX as well.
For example,
FILTER ( Shipments, Shipments[Number] IN {1234,5689,9856} )