Forum Discussion

matrix_user's avatar
matrix_user
Icon for Helper III rankHelper III
3 years ago
Solved

Count rows with conditions based on two columns.

Hello,   I am looking for help for a DAX expression (measure) that would allow me to count rows with the condition that it has a start date and no end date only. Based on the example bellow the DAX...
  • tamerj1's avatar
    3 years ago

    Hi matrix_user 

    please try

    Count =
    COUNTROWS (
        FILTER (
            'Table',
            NOT ISBLANK ( 'Table'[Start Date] ) && ISBLANK ( 'Table'[End Date] )
        )
    )