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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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