Forum Discussion
How to keep y axis static
- 1 year ago
Try adding a + 0 to your measure.
i.e. -> Count of IncidentID = COUNT('YourTable'[IncidentID]) + 0 - Anonymous1 year ago
Hi Tarunika15 , hello dlopesc04, thank you for your prompt reply!
Agree with Tarunika15's opinion, you could also use the COALESCE function to return zero when no data is available:Incident Count = COALESCE(COUNT(IncidentTable[IncidentID]),0)Result for your reference:
Best regards,
Joyce
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Tarunika15 , hello dlopesc04, thank you for your prompt reply!
Agree with Tarunika15's opinion, you could also use the COALESCE function to return zero when no data is available:
Incident Count = COALESCE(COUNT(IncidentTable[IncidentID]),0)
Result for your reference:
Best regards,
Joyce
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.