cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Tan
Advocate I
Advocate I

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)
)
)

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 @Tan 

 

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.

Helpful resources

Announcements
Vote for T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Vote for your favorite t-shirt design now through March 28.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!