Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Filter Columns in Table Based on Filter

Hi,

 

Is there a way to filter columns in a table? for example, in the table below, if no Month is selected, I want to show the fields ENTRIES test, % Entries Full Year, and Count Weekday Full Year.

 

If I click on a certain month, I only want the ENTRIES test, % Entries, and Count Weekday fields to be shown.


Is this possible?

 

Thank you!
Sarah

  • hi  Anonymous 

    For your case, you could try this way to get it:

    Step1:

    Add a new table that contains these five measures name

    Step2:

    Then create a measure as below

    Measure =
    SWITCH(SELECTEDVALUE('Columns'[Type]),
    "ENTRIES test",[ENTRIES test],
    "% Entries Full Year",IF(ISFILTERED('Table'[Month]),BLANK(),[% Entries Full Year]),
    "Count Weekday Full Year",IF(ISFILTERED('Table'[Month]),BLANK(),[Count Weekday Full Year]),
    "% Entries",IF(ISFILTERED('Table'[Month]),[% Entries],BLANK()),
    "Count Weekday",IF(ISFILTERED('Table'[Month]),[Count Weekday],BLANK()))

    Step3:

    Now drag Type field into columns of matrix visual and this measure instead of these five measure into visual.

     

    here is simple sample pbix file.

    Result:

     

    Regards,

    Lin

2 Replies

  • v-lili6-msft's avatar
    v-lili6-msft
    Community Support

    hi  Anonymous 

    For your case, you could try this way to get it:

    Step1:

    Add a new table that contains these five measures name

    Step2:

    Then create a measure as below

    Measure =
    SWITCH(SELECTEDVALUE('Columns'[Type]),
    "ENTRIES test",[ENTRIES test],
    "% Entries Full Year",IF(ISFILTERED('Table'[Month]),BLANK(),[% Entries Full Year]),
    "Count Weekday Full Year",IF(ISFILTERED('Table'[Month]),BLANK(),[Count Weekday Full Year]),
    "% Entries",IF(ISFILTERED('Table'[Month]),[% Entries],BLANK()),
    "Count Weekday",IF(ISFILTERED('Table'[Month]),[Count Weekday],BLANK()))

    Step3:

    Now drag Type field into columns of matrix visual and this measure instead of these five measure into visual.

     

    here is simple sample pbix file.

    Result:

     

    Regards,

    Lin

  • az38's avatar
    az38
    Community Champion

    Hi Anonymous 

    no, sorry

    only play with bookmarks