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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
charonT
Helper I
Helper I

Remove blank data after selecting the parameter slicer

Hi, I am a new user of Power BI and I might not have explained my issue clearly. I've set up a parameter that enables users to choose the column they want as the x-axis for a graph. However, there are empty cells in the data, and I want to exclude these blank values from the graph when users select the respective field. I attempted using the filter pane, but it seems to affect other fields as well when I set Is not Blank for the field I selected. Do you have any suggestions on how to solve this issue?

Many thanks.

 

charonT_0-1704800480856.png

 

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@charonT,

 

Create a measure using the pattern below. The SWITCH function should have an entry for each column in your field parameter. Add this measure as a visual filter (greater than 0).

 

Visual Filter =
VAR vSelectedParameter =
    SELECTCOLUMNS (
        SUMMARIZE ( 'Parameter', 'Parameter'[Parameter], 'Parameter'[Parameter Fields] ),
        "Parameter", 'Parameter'[Parameter]
    )
VAR vResult =
    SWITCH (
        vSelectedParameter,
        "ACTMEAN",
            SUMX (
                DimTable,
                VAR vColumn = DimTable[ACTMEAN]
                RETURN
                IF ( NOT ISBLANK ( vColumn ), 1 )
            ),
        "ACTONTRACK",
            SUMX (
                DimTable,
                VAR vColumn = DimTable[ACTONTRACK]
                RETURN
                IF ( NOT ISBLANK ( vColumn ), 1 )
            )
    )
RETURN
    vResult

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
DataInsights
Super User
Super User

@charonT,

 

Create a measure using the pattern below. The SWITCH function should have an entry for each column in your field parameter. Add this measure as a visual filter (greater than 0).

 

Visual Filter =
VAR vSelectedParameter =
    SELECTCOLUMNS (
        SUMMARIZE ( 'Parameter', 'Parameter'[Parameter], 'Parameter'[Parameter Fields] ),
        "Parameter", 'Parameter'[Parameter]
    )
VAR vResult =
    SWITCH (
        vSelectedParameter,
        "ACTMEAN",
            SUMX (
                DimTable,
                VAR vColumn = DimTable[ACTMEAN]
                RETURN
                IF ( NOT ISBLANK ( vColumn ), 1 )
            ),
        "ACTONTRACK",
            SUMX (
                DimTable,
                VAR vColumn = DimTable[ACTONTRACK]
                RETURN
                IF ( NOT ISBLANK ( vColumn ), 1 )
            )
    )
RETURN
    vResult

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thank you! It totally works!

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.