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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
epa095
Frequent Visitor

Numeric slicer: keep blank rows

I have a dataset with a numeric column where some entries have blank/None. I would like to create a numeric **between** slicer and configure it to *keep* the rows with blank. Today it works if one uses "max" slicer, but not a "min" or "between" slicer.

Example dataset:

Name|Age
John|43
Mary|
Roger|12
Sue|7

 

As you see we don't know the age of Mary. I would like to be able to configure the slicer such that she (and other with blank age) shows up no matter what I pick in the slicer. For example between 10 and 30  Is this possible?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @epa095 ,

Here are the steps you can follow:

1. Create calculated table.

Table 2 = GENERATESERIES(MIN('Table'[Age]),MAX('Table'[Age]))

vyangliumsft_3-1643163129303.png

2. Create measure.

Flag =
IF(or(MAX('Table'[Age])>=MIN('Table 2'[Value])&&MAX('Table'[Age])<=MAX('Table 2'[Value]),MAX('Table'[Age])=BLANK()),1,0)

3. Place [Flag] in Filters, set is=1, apply filter.

vyangliumsft_4-1643163129305.png

4. Result:

vyangliumsft_5-1643163129306.png

 

Best Regards,

Liu Yang

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  @epa095 ,

Here are the steps you can follow:

1. Create calculated table.

Table 2 = GENERATESERIES(MIN('Table'[Age]),MAX('Table'[Age]))

vyangliumsft_3-1643163129303.png

2. Create measure.

Flag =
IF(or(MAX('Table'[Age])>=MIN('Table 2'[Value])&&MAX('Table'[Age])<=MAX('Table 2'[Value]),MAX('Table'[Age])=BLANK()),1,0)

3. Place [Flag] in Filters, set is=1, apply filter.

vyangliumsft_4-1643163129305.png

4. Result:

vyangliumsft_5-1643163129306.png

 

Best Regards,

Liu Yang

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

amitchandak
Super User
Super User

@epa095 , Use what of parameter and create a measure like

 


measure =
var _min = minx(allselected(whatif), whatif[paramter])
var _max = maxx(allselected(whatif), whatif[paramter])
return
calculate(Average(Table[Age]), filter(table, (Table[Age] >= _min && Table[Age] <= _max) || isblank(Table[Age])))

 

https://docs.microsoft.com/en-us/power-bi/desktop-what-if

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors