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
DavidWaters100
Post Patron
Post Patron

Problem with countrows

Hi, I have the following Dax expression which counts how many times a reference appears within a table.  But I also have a column with 3 types of row (A, B C) and need to only count A.  I can't seem to figure out how to return the below count result but for only type A - for certain reasons I can just add the Type to the Concat reference.

 

Any help greatly appreciated!

 

thanks

 

COUNT =
VAR __CurrentRowID = MonthlyMovement[Concat]
RETURN
(COUNTROWS(
    FILTER(
        ALL(MonthlyMovement),
        __CurrentRowID = MonthlyMovement[Concat]
    )
)
)
Proud to be a Super User!
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

COUNT =
VAR __CurrentRowID = MonthlyMovement[Concat]
RETURN
(COUNTROWS(
    FILTER(
        ALL(MonthlyMovement),
        __CurrentRowID = MonthlyMovement[Concat] && [Type] = "A"
    )
)
)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

COUNT =
VAR __CurrentRowID = MonthlyMovement[Concat]
RETURN
(COUNTROWS(
    FILTER(
        ALL(MonthlyMovement),
        __CurrentRowID = MonthlyMovement[Concat] && [Type] = "A"
    )
)
)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Thanks very much - not sure why I didn't think of that!

Proud to be a Super User!

Sometimes just takes a fresh set of eyes!


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

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