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
Im pretty new to POwer Bi and am having trouble getting this simple DAX to work, please help!
I have a table of customer rates for different tariffs:
Customer | Tariff Type | Rate |
ABC Ltd | 1 | $ 50.00 |
CDE Ltd | 1 | $ 60.00 |
EFG Ltd | 1 | $ 70.00 |
ABC Ltd | 2 | $ 20.00 |
CDE Ltd | 2 | $ 30.00 |
EFG Ltd | 2 | $ 40.00 |
ABC Ltd | 3 | $ 100.00 |
CDE Ltd | 3 | $ 120.00 |
EFG Ltd | 3 | $ 130.00 |
Then I have another table where I want columns to return the min and max amounts for each tariff to show like this:
Tariff Type | Min Rate | Max Rate |
1 | $ 50.00 | $ 70.00 |
2 | $ 20.00 | $ 40.00 |
3 | $ 100.00 | $ 130.00 |
Could someone help me with the dax formula to lookup the min/max value based on the Tariff Type. Im sure its easy, its elluding me though!
Thanks Tash
Hi @Anonymous ,
In fact, you don't need a DAX formula, you can get it by drag and drop Tariff Type to the table visualization and then drag and drop Rate column two times, and then just click in the rigth arrow:
Then just select Minimum operation for first Rate, and the Maximum operation for the second Rate:
and that's it you will get your desired table:
Hope this helps,
Regards,
Gian Carlo Poggi
Yes you are right @gpoggi sometimes dax would be an overkill if you just want a simple table visual 😛
Hello Tash/ @Anonymous ,
you could use this approach to create your table
EndTable = SUMMARIZE ( CustomerRates, CustomerRates[Tariff Type], "Min Rate", MIN ( CustomerRates[Rate] ), "Max Rate", MAX ( CustomerRates[Rate] ) )
Here you have an example file
If this post was helpful may I ask you to mark it as solution and give it some kudos?
Have a nice day!
BR,
Josef
User | Count |
---|---|
70 | |
67 | |
63 | |
50 | |
28 |
User | Count |
---|---|
113 | |
77 | |
65 | |
55 | |
43 |