Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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 ?
Solved! Go to Solution.
@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())
@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())
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
57 | |
38 | |
36 |
User | Count |
---|---|
81 | |
67 | |
62 | |
46 | |
45 |