Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Help with a measure: Counting rows.

Hello, I need some halp with a simple DAX query.   I have a table of facts that contains, amongst other things, a created date column ([credte]), a closed date column ([clomatdte]) and a fee earne...
  • v-deddai1-msft's avatar
    5 years ago

    Hi Anonymous ,

     

    Would you please try to use the following measure:

    Open Matters =
    CALCULATE (
        COUNTROWS ( lgmattrr ),
        FILTER ( lgmattrr, ISBLANK ( lgmattrr[clomatdte] ) ),
        ALL ( 'Date Table' )
    )

     

    If this post help, please consider accept it as the solution to help other member find it more quickly.

     

    Best Regards,

    Dedmon Dai