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.
Hi all,
I have a data table similar to the below:
Fruit | Quantity |
Apple | 12 |
Pear | 2 |
Banana | 5 |
Orange | 7 |
Kiwi | 2 |
Melon | 3 |
Grapefruit | 4 |
Peach | 1 |
I need to create a measure that finds the fruit that have a quantity less than 3, and then displays the names of those fruits in a text box (or card visual, whatever's easiest). So for the above example, the text box will display the following:
"Pear, Kiwi, Peach"
The quanitites of fruit will change on a weekly basis, so one week this text box could contain 3 fruits, the next 1, the next 7... and I need the text box to automatically update to reflect this, keeping the same format (i.e. each fruit separated by a ",")
Thanks
Solved! Go to Solution.
@Anonymous , Hope Quantity is a column
then
Concatenatex(Filter(Table, Table[Quantity] <3) , Table[Fruit])
Thanks!
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 |
---|---|
78 | |
78 | |
59 | |
35 | |
33 |
User | Count |
---|---|
100 | |
62 | |
56 | |
47 | |
41 |