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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
EmilyM2019
Helper II
Helper II

DAX function to count values in column

Hi all,

 

I have a column that contains various rows of different text, some of the rows say "Overdue" some say "Not due" some are blank. 

 

How do I create a DAX formula to count all the Overdue rows?

 

Sorry totally new to this.

 

TIA Emily.

1 ACCEPTED SOLUTION
Nathaniel_C
Super User
Super User

Count = CALCULATE(Countrows(Table),Table[Column]="Overdue")

Hi @EmilyM2019 ,


Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

5 REPLIES 5
Nathaniel_C
Super User
Super User

Count = CALCULATE(Countrows(Table),Table[Column]="Overdue")

Hi @EmilyM2019 ,


Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




I am a new user of Power Bi and you are a star to solve my issue of not having countif in Power BI.

Anonymous
Not applicable

What about to count "overdue" and "not due" both?

Hi @Anonymous ,
Please try this:

Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel

Nathaniel_C_1-1653924715665.png

Count = CALCULATE(Countrows(overdue),overdue[Column1]="Overdue" || overdue[Column1]= "Not overdue")

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Awesome, thanks so much.

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.

Top Solution Authors