Forum Discussion

OR0159236's avatar
OR0159236
New Member
4 years ago
Solved

DAX Statement Problem

This is my Power BI canvas for a report I'm putting together. Let me try and explain the details of what I'm trying to accomplish and what my issue is.  I have a dataset of INTAKES that is approxim...
  • amitchandak's avatar
    4 years ago

    OR0159236 , is it a format issue ?

     

    Date like


    OVERDUE ALL INTAKES =
    CALCULATE(
    DISTINCTCOUNT(_NFSU_INTAKES_ALG[INTAKE ID]),
    ALL(_NFSU_INTAKES_ALG),
    FILTER(
    _NFSU_INTAKES_ALG, [INTAKE STATUS] in {"Pending Review/Assignment", "Under Investigation"} &&
    [INVESTIGATION DUE DATE] <= date(2021,11,30) && [RECEIVED END DATE] >= date(2019,10,01)
    )
    )