Forum Discussion

Kolumam's avatar
Kolumam
Icon for Post Prodigy rankPost Prodigy
6 years ago
Solved

Calculating prorated value based on a condition

I have the below table.

I need to calculate the annual contract based on the start date and end date of the contract.

 

As you can see from the above table, the first contract starts at 1 July 2019 and ends at 31 Aug 2019. So the annual contract price for 2019 would be (Comprehensive Price * 60/180) where 60 is the number of days between start date of contract and end date of contract and 180 is the number of days in that year starting from July 2019.

So here is the expected output with calculation for your reference:

YearAnnual Contract Price
2019(375*60/180)+(405*120/180) = 395
2020(405*90/365)+(385*240/365) = 353.01 (approx)
2021(385*365/365) = 385

 

The above calculation applies only if we have two contracts falling on the same year with different comprehensive price. On the other hand if you have the below table where there is just one contract a year

the below should be the output:

So for 2017 here, the price is 380 since it is 380*365/365 eventhough contracts starts only from 1 April 2017 and then from 2018 onwards it is prorated. So it will be (380*90/365)+(410*240)/365

 

How do I create a DAX that satisifes both these conditions?

 

amitchandak parry2k mahoney19 @Amit @amitchandak @parry2k @az38 @jdbuchanan71 @mahoneypat @edhans @harshnathani @v-kellya-msft @MFelix @Ashish_Mathur @BA_Pete @ryan_mayu @kbuckvol @Alexander76877 @Petazo @Mariusz @TomMartens @Greg_Deckler @tjd @Sean @mikstra @AllisonKennedy @EricHulshof @briandpeterson @USG_Phil @vpatel55 @mwegener @v-piga-msft tex628 sturlaws Vvelarde Anonymous MarcelBeug Zubair_Muhammad v-piga-msft danextian MattAL MattAllington roalexan Anonymous kgc 

 

3 Replies

  • v-deddai1-msft's avatar
    v-deddai1-msft
    Icon for Community Support rankCommunity Support

    Hi Kolumam ,

     

    I spent a lot of time on this, but your logic is too complicated, I really can't write a suitable formula, I hope super user can help you well.

     

    Best Regards,

    Dedmon Dai

    • ImkeF's avatar
      ImkeF
      Icon for Community Champion rankCommunity Champion

      Hi Kolumam 

       I could provide a Power Query solution for that.

      If that's OK, please confirm how to handle partial end years: Shall they be considered as full years like the parital start years or taken pro rata?