Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello,
I have a slow response measure for a ticketing system, which reads,
Given September is not over, there are no tickets with a slow response flag, as shown in the bar chart. However, how can I make the KPI indicator say "0" - as the sum of slow response flags = 0.
Thanks.
Solved! Go to Solution.
Hey,
try to modify your measure to something like this:
Slow Response Count =
if(
CALCULATE([Ticket Count],'Support Tickets'[Slow Response Flag]=1)=BLANK(),
0,
CALCULATE([Ticket Count],'Support Tickets'[Slow Response Flag]=1)
)
if the value is blank (meaning there are no slow responses) then it returns 0, otherwise it returns the number of slow respones.
Hope it helps!
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I'm not a 100% sure how your TicketCount Measure is defined, but I think the following formula should show you a 0 instead of nothing:
Slow Response Count formatted = IF(ISBLANK([Slow Response Count]), 0, [Slow Response Count])
Hey,
try to modify your measure to something like this:
Slow Response Count =
if(
CALCULATE([Ticket Count],'Support Tickets'[Slow Response Flag]=1)=BLANK(),
0,
CALCULATE([Ticket Count],'Support Tickets'[Slow Response Flag]=1)
)
if the value is blank (meaning there are no slow responses) then it returns 0, otherwise it returns the number of slow respones.
Hope it helps!
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
That worked, thank you!!!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 38 | |
| 33 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 31 | |
| 27 | |
| 25 |