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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
tunahankucuker
New Member

Workload by time

Hello everyone,

I am sharing the data and the corresponding visualization for the "Open Tasks by Month and Their Workload" chart, which is one of our requirements.

In this visualization, the X-axis represents the period, and the totals are stacked based on createPeriod. The colors are differentiated by quarters.       

For example, when we look at the period May-2024, we can see that 17 tasks remained open since March-2023.

The color coding is consistent for the quarter containing April, May, and June.

How can we implement this setup in Power BI?

Thank you in advance for your help!

image.png

 

1 ACCEPTED SOLUTION

Hi, @tunahankucuker 

First, you need to create a metric to calculate the cumulative number of uncompleted tasks:

CumulativeOpenTasks = 
CALCULATE(
    SUM('YourTable'[count]),
    FILTER(
        ALL('YourTable'),
        'YourTable'[period] <= MAX('YourTable'[period])
    )
)

Create a calculated column to differentiate tasks based on their creation duration:

OpenTasksByCreationPeriod = 
CALCULATE(
    SUM('YourTable'[count]),
    FILTER(
        'YourTable',
        'YourTable'[createPeriod] = EARLIER('YourTable'[createPeriod])
    )
)

In Power BI Desktop, add a new stacked area map to the report. Drag this PERIOD field to the X-axis. Drag the CumulativeOpenTasks metric to the Value field. Drag the field createPeriod to the legend to differentiate tasks based on when they were created. In the Format pane, set the color coding for each quarter. This can be achieved by assigning a specific color to each value in the field createPeriod.

 

 

Best Regards,

hackcrr

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

View solution in original post

2 REPLIES 2
tunahankucuker
New Member

Our company recently transitioned from another business intelligence program to Power BI. Therefore, I need to share it this way. I'm sorry for any inconvenience.

our data like this:         
periodissuetypeseverityimportancesourcecreatePeriodcount
3/1/2023DefectMajorNULLEmployee3/1/20232
3/1/2023DefectMinorNULLEmployee3/1/20234
3/1/2023Requirement ChangeNULLMediumCustomer3/1/20239
3/1/2023Requirement ChangeMajorMediumCustomer3/1/20233

 

Hi, @tunahankucuker 

First, you need to create a metric to calculate the cumulative number of uncompleted tasks:

CumulativeOpenTasks = 
CALCULATE(
    SUM('YourTable'[count]),
    FILTER(
        ALL('YourTable'),
        'YourTable'[period] <= MAX('YourTable'[period])
    )
)

Create a calculated column to differentiate tasks based on their creation duration:

OpenTasksByCreationPeriod = 
CALCULATE(
    SUM('YourTable'[count]),
    FILTER(
        'YourTable',
        'YourTable'[createPeriod] = EARLIER('YourTable'[createPeriod])
    )
)

In Power BI Desktop, add a new stacked area map to the report. Drag this PERIOD field to the X-axis. Drag the CumulativeOpenTasks metric to the Value field. Drag the field createPeriod to the legend to differentiate tasks based on when they were created. In the Format pane, set the color coding for each quarter. This can be achieved by assigning a specific color to each value in the field createPeriod.

 

 

Best Regards,

hackcrr

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors