March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I dont know if this is exactly solved it in other post, i tried to find out but i didnt have luck.
I have the next table:
Customer | Amount | |
Customer1 | 5 | |
Customer2 | 7 | |
Customer3 | 10 | |
Customer1 | 5 | |
Customer4 | 2 | |
Customer3 | 3 | |
Customer2 | 4 | |
Customer1 | 5 | |
Customer5 | 1 |
I want obtain in a visual card 15, that would be the total of the Customer1, who is the customer with more amount.
I hope you can help me
Solved! Go to Solution.
Hello @Luis98 ,
One of the ways to achieve the result:
Create a measure:
_Amount = SUM ( Customers[Amount] )
Second measure:
TOPCustomerValue = MAXX ( VALUES ( Customers[Customer] ), [_Amount] )
Another way with TOPN (can be used both to retreive the TOP value or the TOP Customer name):
TOPCustomer =
VAR topCustomer =
TOPN (
1,
ADDCOLUMNS ( VALUES ( Customers[Customer] ), "@Amount per customer", [_Amount] ),
[@Amount per customer]
)
RETURN
MAXX ( topCustomer, [Customer] )
In the example above we retreive the TOP Customer name.
Please, take into account that TOPN returns an entire table or a table with one or more columns. That is why you had errors before.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
Hello @Luis98 ,
One of the ways to achieve the result:
Create a measure:
_Amount = SUM ( Customers[Amount] )
Second measure:
TOPCustomerValue = MAXX ( VALUES ( Customers[Customer] ), [_Amount] )
Another way with TOPN (can be used both to retreive the TOP value or the TOP Customer name):
TOPCustomer =
VAR topCustomer =
TOPN (
1,
ADDCOLUMNS ( VALUES ( Customers[Customer] ), "@Amount per customer", [_Amount] ),
[@Amount per customer]
)
RETURN
MAXX ( topCustomer, [Customer] )
In the example above we retreive the TOP Customer name.
Please, take into account that TOPN returns an entire table or a table with one or more columns. That is why you had errors before.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
Hi @Luis98 ,
try below measure
Measure = TOPN (
1,
ADDCOLUMNS (
VALUES ( 'Table'[Customer] ),
"@Amount", [Amount]
),
[@Amount],
DESC
)
If this post helps, then please consider Accept it as the solution, Appreciate your Kudos!!
No, with this Measure i get this error:
"The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value",
i tried using [Amount] as column and as measure which SUM([Amount]), but neither work.
Some idea?
May be you can try to check with table visual in filter pane you have the option to do Top N on customer filter add amount and filter with 1 top n and see as power bi is filters based on value if the value is same for multiple customers it will show all of them.
Mmmm no, i have just one top 1.
Why are you calling "@Amount" and [@Amount]? I lose myself in this step
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |