Reply
avatar user
Anonymous
Not applicable

Find a Date measure based on No. of Days Calculated

I have a measure to calculate no of  Days remaining based on Funds  Utilization and  I am trying to write a measure to  find the  Date   for Days Calculated for funds Exhaustion.

"
Date Until Exhaustion =
VAR Date_select =
IF (
MONTH ( TODAY () ) = 1,
DATE ( YEAR ( TODAY () ) - 1, 12, DAY ( TODAY () - 1 ) ),
DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 1, DAY ( TODAY () - 1 ) )
)
RETURN
CALCULATE (
DATEADD(Dates[Date].[Date],[Days Until Exhaustion (PE)],DAY),
FILTER (Dates,Dates[Date].[Date]
= DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 1, DAY ( TODAY () - 1 ) )
)
)"
 
this  worked until 2019 but not anymore .
 any suggestions or ideas please 🙂
also the days measure is 
Days Until Exhaustion  = [Contract Value Remaining]/[Daily Run Rate For Prior Week]
TIA
 
3 REPLIES 3
amitchandak
Super User
Super User

Not very Clear, what role variable, which is not used. Seems like date = date which one month and one day behind , that you can get like

CALCULATE (
DATEADD(Dates[Date],[Days Until Exhaustion (PE)],DAY),
dateadd(dateadd('Date'[date],-1,DAY),-1,Month)
)
)
Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
avatar user
Anonymous
Not applicable

I have calculated "days until Exhaustion" variable and want it to be  a date from today .  In my Report below the Days until exhaustion  = 293 I want it to reflect it as Date (today() + Days until exhaustion)  Capture.PNG

Hi @Anonymous 

 

You might consider creating pbix file that will contain some sample data (remove the confidential info), upload the pbix to onedrive or dropbox and share the link to the file. Please do not forget to describe the expected results based on this sample data.

 

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.
avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 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.

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)