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
I have a formula that I got which was written by somebody else.
Top 100K accounts = SUMX ( FILTER ( GROUPBY ( 'Dataset', 'Dataset'[CompanyName], "_1", SUMX ( CURRENTGROUP (), 'Dataset'[Amount] ) ), [_1] >= 100000 ), [_1] )
I want to add a clause and filter the data by using a categorical column. Like country = United Kingdom. How would I add this in the formula above?
Solved! Go to Solution.
Hello @Samarth_18 , it does not work. I have opted for page filters for now. Thanks.
Hi @Datagulf ,
Please try this:-
Top 100K accounts =
SUMX (
FILTER (
GROUPBY (
'Dataset',
'Dataset'[CompanyName],
'Dataset'[country],
"_1", SUMX ( CURRENTGROUP (), 'Dataset'[Amount] )
),
[_1] >= 100000
&& [country] = "United Kingdom"
),
[_1]
)
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hello @Samarth_18 , it does not work. I have opted for page filters for now. Thanks.
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 |
---|---|
134 | |
91 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |