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

Did 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

Reply
raphazzz
Helper I
Helper I

Help: Matrix Excludes December in Transaction Analysis

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.

raphazzz_1-1701828498436.png

 

When I count the rows and set the column with the calendar month, I obtain the count of all transactions for all 12 months.

raphazzz_2-1701828524588.png

 

However, when I use a different measure that counts rows based on a specific condition, it does not include the month of December.

raphazzz_3-1701828543030.png

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.

 

raphazzz_4-1701828772518.png

 

Any suggestions, this is driving me crazy.

 

 

1 REPLY 1
Ashish_Mathur
Super User
Super User

Hi,

Share the download link of the PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.