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.
This must be very easy, but I don't remember at the moment. The goal is to create a new table based on Table1:
Only the rows containing the smallest Value of every Category should go to the new table. Resulting in this:
What formula can I use?
Solved! Go to Solution.
@Zyg_D , you can create a new table like
summarize(Table, Table[Category], Table[Info], "Value", min(Table[Value]))
or use measure min(Table[Value]) with Category and Info in table or matrix visual
@Zyg_D , you can create a new table like
summarize(Table, Table[Category], Table[Info], "Value", min(Table[Value]))
or use measure min(Table[Value]) with Category and Info in table or matrix visual
User | Count |
---|---|
70 | |
64 | |
62 | |
49 | |
28 |
User | Count |
---|---|
117 | |
80 | |
65 | |
54 | |
43 |