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
imy
Helper I
Helper I

Progress charts

Good evening,

 

I am trying to produce a chart that shows the progress in data for example, today i have 2 deted items, 3 to be deleted and 5 NOT to delete. I need to check periodically (lets say every week) and show the progress on the same items (or even more categories if they exist) by date. Is this possible?

 

Many thanks!

 

3 REPLIES 3
parry2k
Super User
Super User

@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



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

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

 

 

 

 

 

 

 

Hi @imy 

Assume you have tables

Capture10.JPG

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]

 

Capture9.JPG

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.

 

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.