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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
shaikhzdandg
Helper I
Helper I

Countrows not returning correct numbers

I have 2 tables DImDate and CC Starters and Leavers both connected via 1-n relationship see below. When I try to create a measure using countrows it then returns incorrect result for APR-22 and May-22.

 

However the excel file that is connected to this has following numbers for the months of Apr and May 22 (see below)

Here is the DAX that counts the number of rows 

Total Leavers Count = 
CALCULATE(
 COUNTROWS(
    'CC Starters & Leavers_26_09_23'),
    ALL('DW DimDate'[StandardDate]
    ))
    

 

image.png

 

 

 

 

image.pngimage.pngimage.pngimage.png

8 REPLIES 8
Ahmedx
Super User
Super User

Share sample pbix file to help you.

shaikhzdandg
Helper I
Helper I

Thanks @Ahmedx 

 

No that one didnt' work either, The correct count for Apr-22 should be 64 and I am getting 49 

 

Dont know where the error is 

 

Total Leavers Count = 
CALCULATE(
 COUNTROWS(
    'CC Starters & Leavers_26_09_23'),
    REMOVEFILTERS(),
    VALUES(
    ('DW DimDate'[FirstDayOfMonth]
    ))
)
    

@Ahmedx 

 

Yes I did try that column as well, no luck the result is the same , incorrect number

 

shaikhzdandg_0-1697898630591.png

 

could you share your pbix-file?

image.png

I wrote this and you wrote something else

ЗНАЧЕНИЯ('DW DimDate'[FirstDayOfMonth])

 

No luck with tht column too

 

shaikhzdandg_0-1697898696413.png

 

Ahmedx
Super User
Super User

pls try this

Total Leavers Count = 
CALCULATE(
 COUNTROWS(
    'CC Starters & Leavers_26_09_23'),
    REMOVEFILTERS(),
     VALUES('DW DimDate'[FirstDayOfMonth])
    ))

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors