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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

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 FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.