Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi guys, all I want to do is simply count all sales orders that contains at least 1 of the products for a selected order. My forumla is shown below. Essentially just confused on how to use contains or containsstring to essentially search for shared values.
Solved! Go to Solution.
I will call you table Sales. I assume you are using a card visual. You may try
No of Orders =
VAR SelectedProductds =
VALUES ( Sales[Products] )
VAR CorrespongingSales =
FILTER ( ALL ( Sales ), Sales[Products] IN SelectedProductds )
VAR CorrespondingOrders =
DISTINCT ( SELECTCOLUMNS ( CorrespongingSales, Sales[Order No] ) )
RETURN
COUNTROWS ( CorrespondingOrders )
@cdawidow2
How does your data look like. Can you share screenshots of the tables and the date model blanking out any sensitive data.
I only have 1 table - products and orders are in the same table. So if an order has 4 products associated with it then it would have 4 lines
I will call you table Sales. I assume you are using a card visual. You may try
No of Orders =
VAR SelectedProductds =
VALUES ( Sales[Products] )
VAR CorrespongingSales =
FILTER ( ALL ( Sales ), Sales[Products] IN SelectedProductds )
VAR CorrespondingOrders =
DISTINCT ( SELECTCOLUMNS ( CorrespongingSales, Sales[Order No] ) )
RETURN
COUNTROWS ( CorrespondingOrders )
Works perfectly! thank you so much!!