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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Adding a filtered column to a data set

Is this possible?

 

1 example.png

 

 

 

 

 

 

 

 

 

This is what normally happens:

 

2 example.png

 

 

 

 

 

 

 

 

 

This is what I want to happen:

 

3 example.png

 

 

 

 

 

 

 

 

Background:

I have a R - Visual that accepts data points to draw a graph.  It has to draw a graph that wil draw the filter selected data point in a different color.  If the whole dataset is filtered the graph looks wonky.  This way the first value of the "Selected" column can be used in R to identify the data point that has to be drawn in a different color.

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

Sure, create a table like this:

 

SlicerTable = DISTINCT('Table'[Name])

 

Make sure this is disconnected from any other tables. Use this in your slicer.

 

Create measure:

Selected = SELECTEDVALUE('SlicerTable'[Name])

 

Put that measure in your table visualization


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

Sure, create a table like this:

 

SlicerTable = DISTINCT('Table'[Name])

 

Make sure this is disconnected from any other tables. Use this in your slicer.

 

Create measure:

Selected = SELECTEDVALUE('SlicerTable'[Name])

 

Put that measure in your table visualization


@ 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!:
The Definitive Guide to Power Query (M)

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

I knew it had to be easy 😋

 

It's perfect!

 

I added to it to remind me if I perhaps selected more than one value

SelectedName = IF(HASONEVALUE('SlicerTable'[Name]), SELECTEDVALUE('SlicerTable'[Name]), "One name please")

 

Thank you Greg!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors