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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.