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
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
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 |
---|---|
80 | |
76 | |
61 | |
36 | |
32 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |