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

Need help to create a grouped bar chart over date

Hi ! 

I'm discovering Power BI and can't find a way to translate my excel graph to Power BI. I have a table with this kind of values

Issue NumberCreated onSolved onTopic
I24070104/05/2024 12:56:1017/06/2024 10:11:5803H

This table contains hundreds of lines. I want to have a grouped bar chart, in which I could get the number of issues of a list of certain topic (like 03H and 07B), opened and solved each day. In x axis the dates, on y axis the number of tickets opened and solved, so that on each day I have two bars one for each measure. Plus, I still need to see the days where I have 0 opened and 0 solved.

I tried creating measures and using a DateTable but as I'm new I couldn't find a way to do it. 

Would love to hear if somebody could help me ! 

Thank you in advance !  

2 REPLIES 2
La_Brocante
Frequent Visitor

I just checked and it doesn't work for my requirement. Fields Solved on and Created on are always filled because my extraction comes from all the issues solved. I just have different dates.

Issue NumberCreated onSolved onTopic
I24070104/05/2024 12:56:1017/06/2024 10:11:5803H
I24070210/06/2024 16:24:0317/06/2024 12:11:5907V
I24070210/06/2024 16:24:0419/06/2024 13:11:5507V
I24070219/06/2024 15:24:0319/06/2024 15:11:5907V

 

For example here I need to have :

 Issues createdIssues solved
04/0510
05/05... 9/06 (each line for each day)00
10/0620
11/06... 16/06 (each line for each day)00
17/0602
18/0600
19/0612
VN999
Resolver I
Resolver I

Create below measure and check it works for your requirement or not ?

IssuesOpened = COUNTROWS(FILTER('YourTable', NOT(ISBLANK('YourTable'[Created on]))))

IssuesSolved = COUNTROWS(FILTER('YourTable', NOT(ISBLANK('YourTable'[Solved on]))))

Replace with YourTable in above measure.

 

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