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
bsas
Post Patron
Post Patron

Cumulated revenue based on duration of project

Hi PBI Experts,

 

I'm new to PBI and need to make some calculation but I have no idea how distribute revenue depending on duration of project. Simple data from my table:

 

billing start date  revenue per month  duration of project:

1/1/2017              20,000.00                            5

2/5/2017              34,000.00                            3

4/13/2017            45,000.00                            4

 

e.g. First project started in Jan and duration is 5 month, another project started in Feb . Revenue for Jan should be 20K, for Feb 20K for Jan +20K for Feb from 1 project + 34K for Feb from second project = 74K. 

 

I try to use measure:

Cumulative_Revenue = CALCULATE(SUM(Acc_Opp[revenue]),
FILTER(FILTER(ALLSELECTED(Acc_Opp),Acc_Opp[Status] = "1.Won"), 
Acc_Opp[Billing start date] <= MAX(Acc_Opp[Billing start date])))

it gives me cumulative revenue but without duration dependency. How I can add duration in this measure. Or maybe there is another way to solve this problem?

 

 

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@bsas,

 

You may refer to the .pbix attached.

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

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@bsas,

 

You may refer to the .pbix attached.

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

Hi @v-chuncz-msft,

 

Sorry for disturbing you, but could you help me to change measure to calculate same revenue but do not add value from previous month?

 

e.g. First project started in Jan and duration is 5 month, another project started in Feb . Revenue for Jan should be 20K, for Feb - 20K for Feb from 1 project + 34K for Feb from second project = 54K. For April 20 + 34 + 45=99

 

I've created such measure but it's hardcoded only for 2017 (I have no idea how to change it) and know I need to apply it to few years.

year_billing = CALCULATE(SUM(opportunity[new_runrate]),
FILTER(opportunity,opportunity[billing_start_date]
<= CALCULATE(MAX(cal[calendar_date].[Date]))),
FILTER(opportunity,IF(opportunity[duration_UPD]=1,
opportunity[billing_start_date],
IF(opportunity[billing_start_date]+(opportunity[duration_UPD]*31)
> DATE(2017,12,31),DATE(2018,1,1),
opportunity[billing_start_date]+(opportunity[duration_UPD]*31)))
>= CALCULATE(MIN(cal[calendar_date].[Date]))))

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.