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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

comulative flow chart

Hey everyone,

 I got a request to build "a cosmic ship" 🙂

 I need to show the amount of task through it's status during the period, but everyday it must include previuos tasks + new task.
What I have is columns Work date (date format), Issue Key ( exp. HND-254, PSD-36 and ect.) and Issue status (Done, Testing, In Progres, New, Backlog).
And I need to show in area chart their change as in Example 1, but when I try to manage it in Power BI it comes like in Expample 2, as I understand that for every day I have to count issue comulative. Have any idea how to do that?



Example 1 .JPGimage.png

3 REPLIES 3
Anonymous
Not applicable

It's a bit difficult to explain, the data is text not a number I'm new at this field, so I'm adding you a part of my report, maybe it will clear the view

 

https://app.powerbi.com/groups/me/reports/3f7eae71-7a29-46f7-9638-095cfeb17287/ReportSection

Eric_Zhang
Microsoft Employee
Microsoft Employee

@Anonymous

Can you try to create a measure?

 

IssueKey cnt =
COUNTX (
    FILTER ( yourTable, yourTable[WorkDate] <= MAX ( yourTable[WorkDate] ) ),
    IssueKey
)

If this is not your case, please post some sample data.

Anonymous
Not applicable

Hey everyone,

 I got a request to build "a cosmic ship" 🙂

 I need to show the amount of task through it's status during the period, but everyday it must include previuos tasks + new task.
What I have is columns Work date (date format), Issue Key ( exp. HND-254, PSD-36 and ect.) and Issue status (Done, Testing, In Progres, New, Backlog).
And I need to show in area chart their change as in Example 1, but when I try to manage it in Power BI it comes like in Expample 2, as I understand some how I have to calculate day issue = previuos amout + this day tasks.

Could anyone hep me?

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors