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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
ketukala
New Member

How to convert static to dynamic adds measure in Dax function

Hello team, I am searching for static to Dynamic

Total Alerts CD =
VAR CD =
DAY(TODAY())
RETURN
CALCULATE (
COUNT( ( PdmDBConnect[WORK_REQ_NO]) ),
FILTER ( 'DIM_DATE_VW (2)', DAY('DIM_DATE_VW (2)'[DIM_DATE_KEY] )=CD)
)
 
Total Alerts PD =
VAR CD =
DAY(TODAY()-1)
RETURN
CALCULATE (
COUNT( ( PdmDBConnect[WORK_REQ_NO]) ),
FILTER ( 'DIM_DATE_VW (2)', DAY('DIM_DATE_VW (2)'[DIM_DATE_KEY] )=CD)
)
1 REPLY 1
amitchandak
Super User
Super User

@ketukala , seem like dynamic using today, ot you can use date slicer

 

example

This Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])))
Last Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])-1))
Last Day = CALCULATE(sum('order'[Qty]), previousday('Date'[Date]))

 

or

This Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=today()))
Last Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=today()-1))

 

refer Day Intelligence - Last day, last non continous day
https://medium.com/@amitchandak.1978/power-bi-day-intelligence-questions-time-intelligence-5-5-5c324...

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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!

December 2024

A Year in Review - December 2024

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