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
Anonymous
Not applicable

Dynamic Header

Hi everyone,

 

I have one Fact (left) and Dim (right) table each as the source in the screenshot below. These two tables have no relationship at all. 

 

In my dashboard, I will have two slicers: Options and Channel. When I select a value in Options (e.g. Channel1) slicer, the second slicer (Channel) should show the values in Channel1 (e.g. w, a, b, c).

beekee_0-1612939028269.png

 

Does anyone know how I can achieve that?

 

Thanks,

BK

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

Please review the following video and check whether that is what you want. It use UNPIVOT feature in Power Query Editor.

Power BI - Dynamic Columns in a Table

Best Regards

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

Please review the following video and check whether that is what you want. It use UNPIVOT feature in Power Query Editor.

Power BI - Dynamic Columns in a Table

Best Regards

manikumar34
Solution Sage
Solution Sage

@Anonymous , 

if you are looking for a measure try somethingnlike this. 

 


measure =SWITCH( TRUE(),

SELECTEDVALUE(Tbale[Options]="Channel1",VALUES(Table1[Channel1]),

SELECTEDVALUE(Tbale[Options]="Channel2",VALUES(Table1[Channel2]),

SELECTEDVALUE(Tbale[Options]="Channel3",VALUES(Table1[Channel3]),BLANK())

 

Regards, 

Manikumar





If this helps, Appreciate your KUDOS!
Did I answer your question? Mark my post as a solution!


Proud to be a Super User!




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