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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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