Forum Discussion

misiek5510's avatar
misiek5510
Helper III
4 years ago
Solved

Count Custom Dax Column

Hi,   I have measure that is an if statement and gives either "completed" or "not completed" output in a table and is called warehouse status. Now I have a table that display's everything correctly...
  • AlexisOlson's avatar
    AlexisOlson
    4 years ago

    You can use it within a count like this:

    COUNTROWS ( FILTER ( Base, [Warehouse Status] = "Completed" ) )

     

    I don't know if this is what you're actually trying to count though.