March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
How can I create a column, probably a calculated column, using DAX to clone an entire column based on the value of a certain measure or the selected value of a slicer?
For example, when I select "A" in a slicer, the measure will become 1; when I select "B" in a slicer, the measure will become 2.
What I want to achieve is to clone the entire "column A" to the new column when I select "A" in the slicer, and clone "column B" to the new column when "B" is selected in the slicer. The values contained in that new column are responsive to the change of selection of trhe slicer / measure.
Thank you.
Solved! Go to Solution.
@johnyip , You can not create a new column using selectedvalue of the slicer.
You can only have measure
Switch(True(),
selectedvalues(Table[Column]) ="A",1 ,
selectedvalues(Table[Column]) ="B",2 ,
3)
Thanks for the reply. Enlighened by your reply, I think I have to use SWITCH() for every of my DAX to select the appropriate column for the calculation. This is rather clumsy but seem to be the only way as of now.
@johnyip , You can not create a new column using selectedvalue of the slicer.
You can only have measure
Switch(True(),
selectedvalues(Table[Column]) ="A",1 ,
selectedvalues(Table[Column]) ="B",2 ,
3)
Thanks for the reply. Enlighened by your reply, I think I have to use SWITCH() for every of my DAX to select the appropriate column for the calculation. This is rather clumsy but seem to be the only way as of now.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |