Forum Discussion
matrix_user
Helper III
3 years agoCount 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...
- 3 years ago
Hi matrix_user
please try
Count = COUNTROWS ( FILTER ( 'Table', NOT ISBLANK ( 'Table'[Start Date] ) && ISBLANK ( 'Table'[End Date] ) ) )
Jayee
Responsive Resident
3 years agoHi Matrix_user
here the Measure formula for your query
Count with End Date = COUNTX('Table','Table'[End date])
Count without End Date = COUNTX('Table',IF(ISBLANK('Table'[End date]),1))