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 moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hello friends,
I have a table of transactions, and when building a matrix, the calculation omits the month of December.
I started a new file with only the fact table and two dim tables and the relationship between the tables is 1 to * from the dim to fact table.
When I count the rows and set the column with the calendar month, I obtain the count of all transactions for all 12 months.
However, when I use a different measure that counts rows based on a specific condition, it does not include the month of December.
I tried two different approaches to the measures a both are not including december:
A =
VAR A =
CALCULATE (
COUNTROWS ( 'Deferment Data' ),
FILTER ( 'Deferment Data', 'Deferment Data'[Deferment] = "Defer" )
)
VAR B =
CALCULATE (
COUNTROWS ( 'Deferment Data' ),
FILTER ( 'Deferment Data', 'Deferment Data'[Deferment] = "No Defer" )
)
RETURN
DIVIDE ( A, B )
B =
VAR A =
CALCULATE (
COUNTROWS ( 'Deferment Data' ),
'Deferment Data'[Deferment] = "Defer"
)
VAR B =
CALCULATE (
COUNTROWS ( 'Deferment Data' ),
'Deferment Data'[Deferment] = "No Defer"
)
RETURN
DIVIDE ( A, B )
In the database, the month of December is present, and I have verified that the same conditions applied in the measure also include December.
Any suggestions, this is driving me crazy.
Hi,
Share the download link of the PBI file.
Check out the April 2026 Power BI update to learn about new features.
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 |
|---|---|
| 36 | |
| 32 | |
| 31 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 57 | |
| 31 | |
| 29 | |
| 22 |