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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Revenue month to month

 

 

I want to calculate the revenue per month using data like this

 

 

Project		StartDate	EndDate		TotalRevenue
Proj1		2018-01-01	2018-12-31	1200

So I can get SUM per month.

 

In a best case scenario the data would already look something like this:

 

Project		Date		Revenue
Proj1		2018-01-01	100
Proj1		2018-02-01	100
Proj1		2018-03-01	100

 

 

2 ACCEPTED SOLUTIONS
Zubair_Muhammad
Community Champion
Community Champion

HI @Anonymous

 

You can try using this calculated Table in DAX

From the Modelling Tab >>>NEW TABLE

 

Table =
VAR temp =
    ADDCOLUMNS (
        GENERATE (
            Table1,
            GENERATESERIES ( MONTH ( Table1[startdate] ), MONTH ( Table1[enddate] ) )
        ),
        "No_of_Months", DATEDIFF ( Table1[startdate], Table1[enddate], MONTH ) + 1
    )
RETURN
    SELECTCOLUMNS (
        temp,
        "Project", [project],
        "Month", EOMONTH ( [startdate], [Value] - 2 )
            + 1,
        "MonthlyValue", [totalrevenue] / [No_of_Months]
    )

 

View solution in original post

Ashish_Mathur
Super User
Super User

Hi,

 

You may refer to my solution in the PBI file here.  Click on the Data tab on the left hand side

 

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

 

You may refer to my solution in the PBI file here.  Click on the Data tab on the left hand side

 

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Zubair_Muhammad
Community Champion
Community Champion

HI @Anonymous

 

You can try using this calculated Table in DAX

From the Modelling Tab >>>NEW TABLE

 

Table =
VAR temp =
    ADDCOLUMNS (
        GENERATE (
            Table1,
            GENERATESERIES ( MONTH ( Table1[startdate] ), MONTH ( Table1[enddate] ) )
        ),
        "No_of_Months", DATEDIFF ( Table1[startdate], Table1[enddate], MONTH ) + 1
    )
RETURN
    SELECTCOLUMNS (
        temp,
        "Project", [project],
        "Month", EOMONTH ( [startdate], [Value] - 2 )
            + 1,
        "MonthlyValue", [totalrevenue] / [No_of_Months]
    )

 

Anonymous
Not applicable

Thank you both! Working now.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.