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 August 31st. Request your voucher.
Hi,
I have list of filters as below.
Requirement:
Incr. $ share | `=Sum(incr. $)/SUM(mega category $)*100 | Numerator= sum(incr $ for any selected in filters) | Denominater : disregard any filters: the ppg,mfg, brand,catogery and consider only mega catogery |
I have written a DAX query as :
As shown below, the first half and second half of the query is giving me same values:
The first section yellow and second section green are actually giving us same values . When divided it is 1. multiplied it is 100.
Could you please help me with the query.
Thanks
Puneeth
Solved! Go to Solution.
Hi @puneethjp ,
Consider using other DAX functions: If the "REMOVEFILTERS" function is not giving you the desired results, you can try using other DAX functions like "ALL", "ALLEXCEPT", or "CALCULATETABLE" to manipulate the filter context and achieve the desired outcome.
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 @puneethjp ,
Consider using other DAX functions: If the "REMOVEFILTERS" function is not giving you the desired results, you can try using other DAX functions like "ALL", "ALLEXCEPT", or "CALCULATETABLE" to manipulate the filter context and achieve the desired outcome.
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
KeepFilters , All Except worked.
Thank you.