Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 filter 50 shipments in all shipments.
Is it possible?
BTW, I use DirectQuery.
Thanks.
Erdem
Solved! Go to Solution.
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.
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
Hi,
After publishing the report, the user how do they do it?
I want the users to change the shipment numbers when they get the report.
Thanks.
Hi @TheTeam35 ,
If I am taking your question correctly then you could add filter or slicer(with multi select option enable).
BR,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
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.
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
You can use the IN syntax in DAX as well.
For example,
FILTER ( Shipments, Shipments[Number] IN {1234,5689,9856} )