Forum Discussion
Progress charts
imy sorry your question is not very clear. can you provide more details? Read this post to get your answer quickly.
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Dear parry2k,
I have a column with 4 different categories : DELETE, YES, NO, Set for deletion and some blanks (wich I need to include). I need to represent this in a bar chart (probably clustered colums chart). This is simple. However, we do weekly check on this results and we need to represent how this 4 categories change through time. For example:
Week 1: Deleted 35, YES 50, NO, 100, Blank 350 = TOTAL: 535
Week 2: Deleted 100, YES 100, NO, 100, Blank 200 = TOTAL: 535
And so on.
Is this possible?
I hope my question is clearer now.
Regards,
Imy
- v-juanli-msft6 years agoCommunity Support
Hi imy
Assume you have tables
Create a calculated column
Column cate = IF([cate]=BLANK(),"Blank",[cate])Create measures
count = CALCULATE(COUNT(Sheet3[id]),FILTER(ALLSELECTED(Sheet3),Sheet3[Column cate]=MAX(Sheet3[Column cate]))) current week = CALCULATE([count],FILTER(Sheet3,WEEKNUM(Sheet3[date],2)=WEEKNUM(TODAY(),2))) Last week = CALCULATE([count],FILTER(Sheet3,DATEDIFF(Sheet3[date],TODAY(),WEEK)=1)) change every week = [current week]-[Last week]Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.