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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
v-yangliu-msft
Community Support
Community Support

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
v-yangliu-msft
Community Support
Community Support

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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