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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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.


Go to My LinkedIn Page


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.


Go to My LinkedIn Page


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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