Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
raju8004
Frequent Visitor

Dax Calculation

im not able to make it dynamic for below calculation based on date range filter its not changing can any one help

Pending Incidents more than one day = IF(ISBLANK(CALCULATE(DISTINCTCOUNT('Incident Monitoring'[number]),'Incident Monitoring'[incident_state] in {"In Progress","On Hold"},'Incident Monitoring'[opened_at]<TODAY()-1)),0,CALCULATE(DISTINCTCOUNT('Incident Monitoring'[number]),'Incident Monitoring'[incident_state] in {"In Progress","On Hold"},'Incident Monitoring'[opened_at]<TODAY()-1))
2 REPLIES 2
v-junyant-msft
Community Support
Community Support

Hi @raju8004 ,

Sorry but can you provide some sample dataset and your expected results? With DAX alone, I have no way of knowing what your problem is.

Best Regards,
Dino Tao

raju8004
Frequent Visitor


CountPendingInProgress =

VAR MinDate = MIN('Date'[Date])

VAR MaxDate = MAX('Date'[Date])

RETURN

COUNTROWS(

    FILTER (

        'Incidents',

        'Incidents'[Status] IN { "In Progress", "Pending" } &&

        'Incidents'[Date] >= MinDate &&

        'Incidents'[Date] <= MaxDate

    )

)

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.