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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Create bar chart for gap between two count value per month

Hi,

 

I would like to make a bar chart showing the value of (count of closed - count of open) per month. Can you give me suggestion on how I put measure for this? Below table is the example of the data:

NotificationDateStatus
AAAA04/01/2020Closed
BBBB02/04/2020Closed
CCCC18/06/2020Open
DDDD01/01/2020Closed
EEEE05/12/2020Open
FFFF06/01/2020Closed
GGGG07/08/2020Closed
HHHH08/08/2020Open
IIII09/08/2020Open
JJJJ10/08/2020Open
KKKK11/08/2020Closed
LLLL12/05/2020Open
MMMM13/11/2020Closed
NNNN15/03/2020Closed

 

Thank you for your help.

 

Regards,

Vano

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try a measure like

calculate(count(Table[Notification]), filter(Table, Table[Status]="Closed")) -calculate(count(Table[Notification]), filter(Table, Table[Status]="Open"))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Anonymous 

I have attached a simple. let me know if you have any questions.
Link: Bi File 
Thanks,
amitchandak
Super User
Super User

@Anonymous , Try a measure like

calculate(count(Table[Notification]), filter(Table, Table[Status]="Closed")) -calculate(count(Table[Notification]), filter(Table, Table[Status]="Open"))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors