The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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!
User | Count |
---|---|
64 | |
55 | |
53 | |
50 | |
31 |
User | Count |
---|---|
180 | |
88 | |
70 | |
46 | |
45 |