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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
twilkins
New Member

Want to show all column values even if measure returns blank, but respect filters

Hi.  I have a tableAccount Managers) that uses a slicer(Regions), but only shows rows for which the measure(Total Bill Extras) has a value to calculate.  What I want is for the table to still show all 'Account Managers'[Full Name] filtered with the Region Slicer even if there is no value to calculate.  

 

Tables:  'Account Managers', 'Bill Extras', 'Regions'

 

Relationships: 'Account Managers'[Region] - 'Regions'[Region]

                       'Account Managers'[TMID] - 'Bill Extras'[TMID]

                       'Bill Extras'[Month] - 'Months'[Month]

 

Here is the full list of managers in Region 50

 

twilkins_2-1674250520635.png

 

Here is what happens when I bring in the "Total Bill Extras" measure.  It only gives me those managers from Region 50 who have data in the 'Bill Extras' table with respect to the filters applied by the slicers.

Total Bill Extras = CALCULATE(SUM('Bill Extras'[RevenueAmount]))

 

twilkins_0-1674249861967.png

 

What I want is to keep all managers from Region 50 in the table and show $0 if there is no data, but I don't want managers from other regions to show up.

 

Any ideas?  

 

PS - My first time posting 🙂

1 ACCEPTED SOLUTION

Awesome!  I used the second option "Show items with no data".  Thank you so much @amitchandak!

View solution in original post

3 REPLIES 3
SilviaM
Frequent Visitor

Hi All, 

 

   I have the same issue, I have already tried the suggestion "Show items with no data" option in the column but it's not working.

   I explain below what I have:

   I have a measure to get the total of alerts and in case the result is 0 instead it shows as Blank, it shows as 0  

      Total Alerts =
      var _alerts=COUNTROWS('Reporte Alerts')
       return
       if(ISBLANK(_alerts),0,_alerts)
 
   An I'm using this measure in a matrix where I need to show the information about the ID, the month, Link Primary or Secondary, but if there were no any alert in an specific month it shows as blank and not 0, i have set the option in the rows and colums "Show items with no data" without any luck.
 
SilviaM_0-1695339365374.png

 

   Any idea why? please help!!
amitchandak
Super User
Super User

@twilkins , Try to add +0 to measure

 

Total Bill Extras = CALCULATE(SUM('Bill Extras'[RevenueAmount])) +0

 

Or use this option

Show item with No data new.png

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

Awesome!  I used the second option "Show items with no data".  Thank you so much @amitchandak!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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 Kudoed Authors