Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
alenknight
Frequent Visitor

How to show only records with data

I have the following Dataset.  I want to have Power BI show ONLY the Stores that have sales in every Product 

so, in a Matrix - the below would ONLY show Store 1... as it's the only one that shows a sale in all 3 products.

 

any help would be appreciated.

sample data :

StoresProductSales
Store1A3
Store2B4
Store3C2
Store1B1
Store2B1
Store3B5
Store1A 
Store2B 
Store3C4
Store1C5
Store2B6
Store3B2
Store1A 
Store2C 
Store3B2

 

 

and this is what i'm getting out of a matrix in PBI  desktop :

alenknight_0-1637003588088.png

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

All measures are in the attached pbix file.

Picture1.png

 

Sales only has ALL Products: =
VAR allproductslist =
ALLNOBLANKROW ( Products[Product] )
VAR currentstore_productlist =
CALCULATETABLE ( VALUES ( Data[Product] ), ALL ( Products[Product] ) )
VAR conditions =
IF ( COUNTROWS ( allproductslist ) = COUNTROWS ( currentstore_productlist ), 1 )
VAR result =
IF ( conditions = 1, SUM ( Data[Sales] ) )
RETURN
result
 
Total Fix: =
SUMX (
SUMMARIZE ( Data, Stores[Stores], Products[Product] ),
[Sales only has ALL Products:]
)
 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
alenknight
Frequent Visitor

excellent! that worked, thanks!

Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

All measures are in the attached pbix file.

Picture1.png

 

Sales only has ALL Products: =
VAR allproductslist =
ALLNOBLANKROW ( Products[Product] )
VAR currentstore_productlist =
CALCULATETABLE ( VALUES ( Data[Product] ), ALL ( Products[Product] ) )
VAR conditions =
IF ( COUNTROWS ( allproductslist ) = COUNTROWS ( currentstore_productlist ), 1 )
VAR result =
IF ( conditions = 1, SUM ( Data[Sales] ) )
RETURN
result
 
Total Fix: =
SUMX (
SUMMARIZE ( Data, Stores[Stores], Products[Product] ),
[Sales only has ALL Products:]
)
 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors