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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.