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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
Super User
Super User

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

@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
Greg_Deckler
Super User
Super User

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

@ 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!:
The Definitive Guide to Power Query (M)

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!

@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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