Forum Discussion
Complex Dax Query Help
Hi Anonymous
You may try to use this part to finish your dax query.
// Find the rank at the 95th percentile of all ranks for each product/station
var table _ThresholdRank =
ADDCOLUMNS(
FILTER(_RankedUsage,
[ReverseRank] == 1),
"ThresholdRank", roundup([Rank]*0.95, 0)
)
// **Missing Step** - Create a list of Period Usage for each product/Station where the rank = the 95%ile rank above
Return SUMX(table_ThresholdRank,[ThresholdRank])
EVALUATE
Best Regards,
Community Support Team _ Caiyun
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If you still have problems on it or I misunderstand your needs, please feel free to let us know. Thanks a lot!