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
powerbi_user1
Frequent Visitor

Create a dynamic column based on slicer selection

I have two tables:

 

Table 1

ColumnAColumnB
A1B1
A2B2
A3B3

 

Table 2

Column Types
ColumnA
ColumnB

 

I have a slicer for Columns Types and based on selection from that filter a ColumnC should be created in the table - Table1.

Eg., If i select ColumnA in the filter, my Table1 should look like this:

New Table1

ColumnAColumnBColumnC
A1B1A1
A2B2A2
A3B3A3

 

If i select ColumnB in the filter, my Table1 should look like this:

New Table1

ColumnAColumnBColumnC
A1B1B1
A2B2B2
A3B3B3

 

The final goal is to create a slicer with ColumnC as well and it will show values based on selected value in Column Types slicer.

5 REPLIES 5
v-yuezhe-msft
Microsoft Employee
Microsoft Employee

@powerbi_user1,


A bit change to Greg_Deckler's DAX.

ColumnC Measure = 
SWITCH(
     MAX('Table 2'[Column Types]),
     "ColumnA",MAX('Table 1'[ColumnA]),
     "ColumnB",MAX('Table 1'[ColumnB]),
     BLANK()
)



Regards,
Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Super User
Super User

ColumnC Measure = 
SWITCH(
     MAX('Table 2'[Column Types])),
     "ColumnA",MAX('Table 1'[ColumnA]),
     "ColumnB",MAX('Table 1'[ColumnB]),
     BLANK()
)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler

Thanks for your reply Greg. But I want to use ColumnC as a slicer anda measure cant be used as a slicer.

Also, using column C as an independent column shows only the maximum value for the column selected in the slicer. 

Columns cannot be dynamic based upon user selection. Just use the disconnected table trick to use your measure as a slicer.


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

What is "the disconnected table trick"?

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!

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.