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

Store filtered column values in a list, then if column values in list, populate new column.Possible?

obestel_0-1669780660870.png

I have used the above data as an example and I am wondering if it is possible to do the following ? 

1) Find all countries for which discount band is low and save this list as a variable

2) Then for all countries in this list, populate a new column with value Y if the country column is in the list. 

 

The pseudocode is as follows:

list = countries where discount band is low

 

for x in rows

    if x[Country] is in list:

        populate new column with value Y

 

END

 

Is this possible ? 

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , In case you need a new column havin value of value column, you can have new column like

 

low value = var _tab = summarize(filter(Table, Table[Discount band] = "Low") , [Country])

return

if([country] in _tab , [Value], blank())

 

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , In case you need a new column havin value of value column, you can have new column like

 

low value = var _tab = summarize(filter(Table, Table[Discount band] = "Low") , [Country])

return

if([country] in _tab , [Value], blank())

 

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.