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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Smitaa
New Member

Slicer like field parameters for Report PBI Server

Hello,

I want to create a slicer of multiple columns based on another slicer having parameters.

for example raw data is like this:

EventStudent IDMaths teacherScience TeacherEnglish Teacher
Exhibition1Ravi ChandraSpriha DasVandana p
Exhibition2RK Das Mamta Chobey
Exhibition3 Rajesh RanjanRajesh Ranjan

 

So first slicer should have values like Maths, Science and English:

Slicer 1
Maths
Science
English

 

And second slicer should filter based on Slicer 1 for example if Maths is selected in slicer 1 , then slicer 2 should have following values:

Slicer 2
Ravi Chandra
RK Das

 And table should show this:

EventStudent IDMaths teacher
Exhibition1Ravi Chandra
Exhibition2RK Das

 

I tried with field parameters but it cant be used in report server

Please help me with this.

 

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Smitaa ,

 

I think your data model is not suitable to achieve your goal. Here I suggest you to select Maths Teacher/English Teacher/Science Teacher columns and use "Unpivot Columns" function. Rename new columns and remove blank value in Teahcer Name.

RicoZhou_0-1671695551973.png

Then create two dimtables for slicers.

DimSubject = 
DATATABLE (
    "Subject", STRING,
    "Teacher Category", STRING,
    {
        { "Maths", "Maths Teacher" },
        { "English", "English Teacher" },
        { "Science", "Science Teacher" }
    }
)
Dim Teacher Name = VALUES('Table'[Teacher Name])

Relationship:

RicoZhou_1-1671695644404.png

Result is as below.

RicoZhou_3-1671695677716.png

 

Best Regards,
Rico Zhou

 

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

1 REPLY 1
Anonymous
Not applicable

Hi @Smitaa ,

 

I think your data model is not suitable to achieve your goal. Here I suggest you to select Maths Teacher/English Teacher/Science Teacher columns and use "Unpivot Columns" function. Rename new columns and remove blank value in Teahcer Name.

RicoZhou_0-1671695551973.png

Then create two dimtables for slicers.

DimSubject = 
DATATABLE (
    "Subject", STRING,
    "Teacher Category", STRING,
    {
        { "Maths", "Maths Teacher" },
        { "English", "English Teacher" },
        { "Science", "Science Teacher" }
    }
)
Dim Teacher Name = VALUES('Table'[Teacher Name])

Relationship:

RicoZhou_1-1671695644404.png

Result is as below.

RicoZhou_3-1671695677716.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Users online (721)