Forum Discussion
Double TopN Measure Returning Text
- Anonymous5 years ago
Hi Anonymous ,
So far, I have completed your first request, and I have encountered some difficulties with your second request. Please wait patiently until I come back next week during work hours. I will continue to study.
The measure is
top 5 Accounts per GPU sold = VAR _RANK = RANKX ( ALL ( 'Sales(Product Level)' ), CALCULATE ( SUM ( 'Sales(Product Level)'[Quantity] ), FILTER ( ALLEXCEPT ( 'Sales(Product Level)', 'Sales(Product Level)'[AccountID] ), [ProductType] = "GPU" ) ), , DESC, DENSE ) RETURN IF ( _RANK <= 5, _RANK )Because there are only 7 account IDs in my sample data, I returned the top five account IDs.
I apologize again for not solving your problem in time.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous5 years ago
Hi Anonymous ,
After my test, creating a measure to get the top 1 product name does not work.
I finally achieved it by creating two tables. Because it is written in dax, if your data is updated, the result will also be updated.
TOP5ACCOUNT ID = FILTER ( SUMMARIZE ( FILTER ( 'Sales(Product Level)', [ProductType] = "GPU" ), [ProductName], [Quantity], "top5", RANKX ( FILTER ( ALL ( 'Sales(Product Level)' ), [ProductType] = "GPU" ), CALCULATE ( SUM ( 'Sales(Product Level)'[Quantity] ), FILTER ( ALLEXCEPT ( 'Sales(Product Level)', 'Sales(Product Level)'[AccountID] ), [ProductType] = "GPU" ) ), , DESC, DENSE ) ), [top5] <= 5 )TOP 1 ProductName = FILTER ( SUMMARIZE ( 'TOP5ACCOUNT ID', [ProductName], [Quantity], "top1", RANKX ( ALL ( 'TOP5ACCOUNT ID' ), CALCULATE ( SUM ( 'TOP5ACCOUNT ID'[Quantity] ), ALLEXCEPT ( 'TOP5ACCOUNT ID', 'TOP5ACCOUNT ID'[ProductName] ) ), , DESC, DENSE ) ), [top1] = 1 )Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, Anonymous
Please try the below measure or similar to the below measure.
Top 1 Product Name on card visual =
MAXX (
TOPN (
1,
'Sales(Product Level)',
CALCULATE (
SUM ( 'Sales(Product Level)'[Quantity] ),
'Sales(Product Level)'[ProductType] = "GPU"
), DESC
),
'Sales(Product Level)'[ProductName]
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster.
Hello Jihwan,
thanks for your reply! This looks good, but is not considering that I need it only among the top 10 Accounts.
Edit: I've tried it and actually it returns something unexpected, and can't really figure out the reason of the outcome.
- Jihwan_Kim5 years agoSuper User
Hi, Anonymous
Thank you for your feedback.
Please share a dataset and also show the expected result.