Forum Discussion
Evaluate a measure for multiple dates
Hello,
I have a contract database containing basic contract information such as Contract number, Client name, contract value, contract signature date, contract start date and contract end date.
Our Company has contracts that vary in lenght so we use MRR as a way to compare all contracts on the same basis.
I am trying to obtain a line chart that would show the evolution of total Monthly recurring revenue (MRR) on a monthly basis for the past 3 years.
I am able to obtain the MRR at the current date with a measure that corresponds to this formula:
Current MRR (USD) = CALCULATE(SUM(Contract_Data[Contract MRR]),Contract_Data[Subscription Start Date]<TODAY(),TODAY()< Contract_Data[Subscription End Date])
Contract MRR = (DIVIDE(Contract_Data[Contract Value],Contract_Data[Contract Lenght],0))
Thank you in advance for your precious help
Check if this can help. You need only one date slicer.
https://medium.com/chandakamit/power-bi-comparing-data-across-date-ranges-36be49b68613
2 Replies
- amitchandak
Super User
Check if this can help. You need only one date slicer.
https://medium.com/chandakamit/power-bi-comparing-data-across-date-ranges-36be49b68613
- AnonymousNot applicable
That worked thanks for the very quick turnaround.