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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Remove year from visual if no data

Hello everyone, it's my first post here, I'm quite new to Power Bi and still discovering it. 

 

I do have a problem, hope you can help me.

 

I have some data for some years, 2018, 2019,  no data for 2020, blank space for 2021 - to be added in soon.

 

For some reason when I generate the graph I get 2020 included in the graph even if there is no data associated with it, I would like to take 2020 out.  

 

Photos attached.

 

Andru1994_0-1634828782547.png ,

Andru1994_2-1634828915076.png

 

Hope you can help

 

Many thanks ! 

 

1 ACCEPTED SOLUTION
Yggdrasill
Responsive Resident
Responsive Resident

Set the filter "on this visual" for "Numbers" to not blank and not 0

Yggdrasill_0-1634829158776.png

 

Alternitavely you can edit the measure you're using and use IF() statement like so:

Numbers = 
VAR _numbers = SUM(Numbers)
RETURN
IF( ISBLANK (_numbers) || _numbers = 0, BLANK(), _numbers)

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Thank you very much

Yggdrasill
Responsive Resident
Responsive Resident

Set the filter "on this visual" for "Numbers" to not blank and not 0

Yggdrasill_0-1634829158776.png

 

Alternitavely you can edit the measure you're using and use IF() statement like so:

Numbers = 
VAR _numbers = SUM(Numbers)
RETURN
IF( ISBLANK (_numbers) || _numbers = 0, BLANK(), _numbers)

 

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.

Top Solution Authors