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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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]
    )

 


Regards
Zubair

Please try my custom visuals

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]
    )

 


Regards
Zubair

Please try my custom visuals
Anonymous
Not applicable

Thank you both! Working now.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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