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
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
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.

Top Solution Authors