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
JHarmon
Regular Visitor

How to exclude a value from a column based on BLANK in another column?

My hourly data shows 'blank' between 11:00PM and 12:00AM.  I'm trying to figure out a measure that would "skip" the circled value when the Time Slot is blank.  Unsuccesful so far.

 

Data with missing time:  Example.xlsx The hourly time is "60 minute time slot" in the file.  Sensor 5 has a value that I want to delete or skip as the chart is drawn.

 

Example.jpg

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@JHarmon , the Blank value can be because the master timetable is missing join or the column used on the axis has blank.

 

You can use a visual level filter and remove the blank value (Use is not blank)

 

or have measures like

 

calculate(sum(Table[Value]), not(isblank(Table[Column])) )

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
JHarmon
Regular Visitor

The master timetable join is present, as is the master date table join.  The colum on the axis has a blank.  The visual filter did the trick!! Success and thank you!!

amitchandak
Super User
Super User

@JHarmon , the Blank value can be because the master timetable is missing join or the column used on the axis has blank.

 

You can use a visual level filter and remove the blank value (Use is not blank)

 

or have measures like

 

calculate(sum(Table[Value]), not(isblank(Table[Column])) )

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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