This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I'm trying to create a void report that shows records that have no sales.
My issue is that some records that have no sales have no records so it will be blank.Is there a better way to count Blank/no record rows and zero?
This is what im currently using.
Voids =
COUNTROWS (
FILTER (
SUMMARIZE (
Data,
Data[DIVISION ID],
Data[Product],
Data[Week Ending],
"X", SUM ( Data[SALES TY] )
),
OR ( [X] = 0, ISBLANK ( [X] ) )
)
)
@tqn626 try this:
Count Without Sales =
VAR __TablesWithSales =
ADDCOLUMNS (
CROSSJOIN (
VALUES ( 'Dim Store'[Store #],
VALUES ( 'Dim Product'[Nat_UPC],
VALUES ( 'Date Table'[FW Week]
),
"@CountFact", CALCULATE ( COUNTROWS ( FactTable ) )
)
RETURN COUNTX ( FILTER ( __TablesWithSales , [@CountFact] == BLANK ( ) ), 1 )
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@tqn626 how do you know which records don't have sales if you have only one table? It is not very clear how you will get it. You should have seperate dimension tables with all the records so that you can find out which one doesn't exist in the data table.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
I created dimensions for each tables, I still end up with incorrect calculations.
Voids =
COUNTROWS (
FILTER (
SUMMARIZE (
FactData,
'DimStore'[ Store#],
DimProduct[Nat_Upc],
'Date Table'[FW Week],
"X", SUM ( FactData[SALES TY] )
),
OR ( [X] = 0, ISBLANK ( [X] ) )
)
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 35 | |
| 29 | |
| 23 | |
| 22 |