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

add column based on selected value

Need help.

Say I have two table 1 and table 2. I am using the Col 1 from Table 1 in a slicer and I have created a measure using SELECTEDVALUE on this column. Say I have selected Value 2.

Now in table 2, I want to add a column (Col 3) which contains 1 or true wherever Col 2 contains this selected value.

 

Table 1
Col 1
Value 1
Value 2
Value 3

 

Table 2  
Col 1Col 2Col 3
TV1Value 10
TV2Value 21
TV3Value 30
TV4Value 21
TV5Value 10

 

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

You could create a measure like this:

Measure = IF(MAX('Table (2)'[Col 2])in VALUES('Table'[Col 1]),1,0)

test_selected-value.PNG

 

Best Regards,
Liang
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

6 REPLIES 6
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

You could create a measure like this:

Measure = IF(MAX('Table (2)'[Col 2])in VALUES('Table'[Col 1]),1,0)

test_selected-value.PNG

 

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

Anonymous
Not applicable

Are you talking about a measure to be placed in a visual or about a calculated column?

If you mean a calculated column, then the answer is simple: you cannot do it. Values in the columns of model tables are always static.

Best
D
Anonymous
Not applicable

@Anonymous Can we put a measure in a visual like a table to filter the details. My ultimate goal is that only. This was a workaround I thought of.

 

In this method, I want to create a column in an existing table (Table 2) based on a selected value from table 1.

Anonymous
Not applicable

Yes, that you can do 🙂

Best
D
bheepatel
Resolver IV
Resolver IV

Hi @Anonymous 

 

Can you try creating the following measure:

 

Col3 = IF( CONTAINS(Table2, Col2, SELECTEDVALUE(Col1)),  1, 0)

Anonymous
Not applicable

@bheepatel it didn't work. all values are coming as zero

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.