Forum Discussion

EmilyM2019's avatar
EmilyM2019
Helper II
6 years ago
Solved

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...
  • Nathaniel_C's avatar
    6 years ago
    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