Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
im not able to make it dynamic for below calculation based on date range filter its not changing can any one help
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
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
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
69 | |
66 | |
51 | |
32 |
User | Count |
---|---|
116 | |
99 | |
75 | |
65 | |
40 |