Forum Discussion

damit23183's avatar
damit23183
Icon for Microsoft Employee rankMicrosoft Employee
6 years ago
Solved

Data not coming as expected

Hi,   I am trying to create MATRIX table with hierarcy on (Region, Office, Manager) and all other columns will have aggregate (Measure/Calculated Field) value.   However, I would like to show all...
  • Greg_Deckler's avatar
    6 years ago
    Perhaps:

    Total Number of Decision =
    VAR __value = CALCULATE(
    COUNT('Table'[ID]),
    Filter('Table', NOT(ISBLANK('Table'[Date])))
    )
    RETURN
    IF(ISBLANK(__value),0,__value)