Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Tarunika15
New Member

How to keep y axis static

Hi all

 

I building a visual but i want to keep the y axis static  irrespectic of filter selection 

Tarunika15_0-1731078096898.png

 

Tarunika15_1-1731078203463.png

 i will be having multiple filters not only one but still the y axis should display all the values i.e all the 5 weeks (y-axis should be static) please let me know how can i achieve this 

 

Thank you 

Tarunika

 

2 ACCEPTED SOLUTIONS
dlopesc04
Resolver II
Resolver II

Try adding a + 0 to your measure.
i.e. -> Count of IncidentID = COUNT('YourTable'[IncidentID]) + 0

View solution in original post

Anonymous
Not applicable

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:

vyajiewanmsft_1-1731397810990.png

 

Best regards,

Joyce

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

  

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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:

vyajiewanmsft_1-1731397810990.png

 

Best regards,

Joyce

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

  

dlopesc04
Resolver II
Resolver II

Try adding a + 0 to your measure.
i.e. -> Count of IncidentID = COUNT('YourTable'[IncidentID]) + 0

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.