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
AutoKris
Frequent Visitor

Cumulative report using data items with two attributes (Planned vs Actual Date)

Hi All,
Just starting with Power BI, took 15h courses, still hard for me to get around below problem.

I have data table with a list of projects with attributes such as potential efficiency savings in hours, statuses and with planned and actual completion dates.
I need to present a report as below image attached, a table and line chart showing cumulated values of savings by month period with two lines, planned vs actual.
See the sample file with RAW DATA TABLE sheet and the actual RESULT sheet to be obtained but in Power BI.
Please suggest simple approach for solution 🙂

 

Result Table and ChartResult Table and Chart

 

 

 

 

1 ACCEPTED SOLUTION
AutoKris
Frequent Visitor

Hi All, thanks for your inputs.

I actually resolved it using the Transformation process, creating two new tables for Planned and Actual dates, leaving only the values of Benefits and the last month date.

 

Secondly to created a cumulated value I created new measures for both using the CALCULATE formula.

 

Actual Efficiency (h) = CALCULATE (
SUM ('Completed Efficiency'[Actual Closure Month]),
FILTER (ALL ('Completed Efficiency'[ActualEndDate] ), 'Completed Efficiency'[ActualEndDate] <= MAX ( 'Completed Efficiency'[ActualEndDate])))

View solution in original post

3 REPLIES 3
AutoKris
Frequent Visitor

Hi All, thanks for your inputs.

I actually resolved it using the Transformation process, creating two new tables for Planned and Actual dates, leaving only the values of Benefits and the last month date.

 

Secondly to created a cumulated value I created new measures for both using the CALCULATE formula.

 

Actual Efficiency (h) = CALCULATE (
SUM ('Completed Efficiency'[Actual Closure Month]),
FILTER (ALL ('Completed Efficiency'[ActualEndDate] ), 'Completed Efficiency'[ActualEndDate] <= MAX ( 'Completed Efficiency'[ActualEndDate])))
v-xiaotang
Community Support
Community Support

Hi @AutoKris 

Since not sure how to calculate the Actual benefit and Actual in your image, I'll use Plan as an example. I think their logic is the same. You can refer to the calculation process of Plan.

(1) create a calendar table

vxiaotang_0-1644821715693.png

(2) create the measures below,

Planned Benefit (h) =
CALCULATE (
    SUM ( 'Table'[Benefit (hours)] ),
    FILTER (
        ALL ( 'Table' ),
        YEAR ( 'Table'[PlannedClosureDate] ) = MIN ( 'calendar'[Y] )
            && MONTH ( 'Table'[PlannedClosureDate] ) = MIN ( 'calendar'[M] )
    )
)

 

Plan = 
VAR _endDate =
    EDATE ( MIN ( 'calendar'[Date] ), 1 )
RETURN
    SUMX (
        FILTER ( ALL ( 'Table' ), 'Table'[PlannedClosureDate] < _endDate ),
        'Table'[Benefit (hours)]
    )

 

result

vxiaotang_0-1646808933743.png

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

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.