Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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

  • Anonymous , Try a measure like

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

2 Replies

  • Anonymous , Try a measure like

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

  • Anonymous's avatar
    Anonymous
    Not applicable

    Anonymous 

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