Forum Discussion
I need help please.
Hi Anonymous ,
You can refer the following links to get it:
Solved: How to create a table calculate OPEN CLOSED and AC... - Microsoft Fabric Community
Opened Tickets Number =
COUNTROWS (
FILTER (
ALLSELECTED ( TicketsWithTeams ),
TicketsWithTeams[CreatedDate] = [Date]
&& TicketsWithTeams[Team] = EARLIER ( TicketsWithTeams[Team] )
)Closed Tickets Number =
COUNTROWS (
FILTER (
ALLSELECTED ( TicketsWithTeams ),
TicketsWithTeams[ClosedDate] = [Date]
&& TicketsWithTeams[Team] = EARLIER ( TicketsWithTeams[Team] )
)
Power BI: Tickets tracking full dashboard
Tickets created =
CALCULATE(COUNT('ticketsData'[ticketID]),
'ticketsData'[status]="created")Tickets closed =
CALCULATE(COUNT('ticketsData'[ticketID]),
'ticketsData'[status]="closed")
Solved: Calculate the number of new, open, closed tickets ... - Microsoft Fabric Community
If the above one can't help you figure out, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic base on the provided sample data. It would be helpful to find out the solution. 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