Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi,
I have the following measure:
Can you filter avoid the blank rows? It Agg is coming zero
in case of row is zero and you want to avoid
MEDIANX( filter('All Store Info',condition to filter),
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
Hi @duggy ,
I think you should create a calculated column not a measre in your scenario. Here we can update the formula as below.
MEDIANFilter =
IF (
'All Store Info'[Turnover] = BLANK (),
BLANK (),
MEDIANX (
FILTER ( 'All Store Info', 'All Store Info'[Turnover] <> BLANK () ),
DIVIDE ( 'All Store Info'[Turnover], 'All Store Info'[Transactions] )
)
)
That would be ideal however the reason I used the measure is that I need to get the value of the slider.
Basically the user can slide the slider and select the amount to add:
I had a similar problem in a What-if scenario, but worked around it by using a variable and wrapping the result in an IF that would return FALSE if blank/0 which forces the MEDIANX to ignore the result.
MEDIANX (
'All Store Info',
VAR _Result =
DIVIDE ( 'All Store Info'[Turnover], 'All Store Info'[Transactions] ) + 'Increase of Basket Value'[Increase of Basket Value Value]
RETURN
IF ( _Result <> 0, _Result, FALSE () )
)
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 111 | |
| 109 | |
| 40 | |
| 33 | |
| 26 |