Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi, how do i count how many open tickets i have by month if i have a created and closed columns but want to know the total by month so need to add both created and closed together?
Solved! Go to Solution.
Hi @dommyw277 ,
You can refer the following links to get it:
Power BI: Tickets tracking full dashboard
Tickets created =
CALCULATE(COUNT('ticketsData'[ticketID]),
'ticketsData'[status]="created")
Tickets closed =
CALCULATE(COUNT('ticketsData'[ticketID]),
'ticketsData'[status]="closed")
Closed by Closing Date =
CALCULATE(
COUNT('Case'[Case Number]);
'Case'[Status] = "Closed";
USERELATIONSHIP('Case'[Date Closed]; 'Calendar'[Date])
)
If the above one can't help you get the expected result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with special examples and screenshots. Later I will check if there is any workaround to achieve your requirement. You can refer the following link to share the required info:
How to provide sample data in the Power BI Forum
And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi @dommyw277 ,
You can refer the following links to get it:
Power BI: Tickets tracking full dashboard
Tickets created =
CALCULATE(COUNT('ticketsData'[ticketID]),
'ticketsData'[status]="created")
Tickets closed =
CALCULATE(COUNT('ticketsData'[ticketID]),
'ticketsData'[status]="closed")
Closed by Closing Date =
CALCULATE(
COUNT('Case'[Case Number]);
'Case'[Status] = "Closed";
USERELATIONSHIP('Case'[Date Closed]; 'Calendar'[Date])
)
If the above one can't help you get the expected result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with special examples and screenshots. Later I will check if there is any workaround to achieve your requirement. You can refer the following link to share the required info:
How to provide sample data in the Power BI Forum
And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
67 | |
65 | |
57 | |
39 | |
27 |
User | Count |
---|---|
85 | |
59 | |
45 | |
43 | |
38 |