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] ) ) )
tamerj1
Community Champion
3 years agoHi matrix_user
please try
Count =
COUNTROWS (
FILTER (
'Table',
NOT ISBLANK ( 'Table'[Start Date] ) && ISBLANK ( 'Table'[End Date] )
)
)