Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

How to create slicer for table columns

Hello

 

I have the following table loaded in Power Query which shows the attendance of people starting from 1 January 2022 until 31 December 2022. In Power BI, i would like to have a slicer with selectable names or a way to allow the report reader to display the attendance by name. I'm not sure how to do this - should an extra column be added in Power Query or is there some DAX to make this work? Any help is much appreciated!!

 

DateLizuiLaufenburgTegalpapakAr RabiyahBellegardeGangarampur
01/01/2022111111
02/01/2022101111
03/01/2022101111
04/01/2022101111
05/01/2022101111
06/01/2022101111
07/01/2022101111
08/01/2022101111
09/01/2022101111
10/01/2022101111
11/01/2022001111
12/01/2022001111
13/01/2022001111
14/01/2022001111
15/01/2022001111
16/01/2022001111
17/01/2022001111
18/01/2022001111
19/01/2022001111
20/01/2022001111
21/01/2022001111
22/01/2022100111
23/01/2022100111
24/01/2022100111
25/01/2022100111
26/01/2022100111
27/01/2022100111
28/01/2022100111
  • Hi,

    So you've currently set it up so that each column is for a different person? Would strongly suggest unpivoting in Power Query, e.g.:

    let
        Source = Excel.CurrentWorkbook(){[Name="MyTable"]}[Content],
        #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Date"}, "Attribute", "Value")
    in
        #"Unpivoted Other Columns"

    which will lead to a more flexible and amenable dataset.

    Regards

     

1 Reply

  • Hi,

    So you've currently set it up so that each column is for a different person? Would strongly suggest unpivoting in Power Query, e.g.:

    let
        Source = Excel.CurrentWorkbook(){[Name="MyTable"]}[Content],
        #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Date"}, "Attribute", "Value")
    in
        #"Unpivoted Other Columns"

    which will lead to a more flexible and amenable dataset.

    Regards