Forum Discussion
LotteLaugesen
1 year agoHelper V
How do I set up this calculation
Hi I need to sum the Weighted Sub in the Subcategory within the Category: So for Commercial it should be 78. The weighted sub calculation: Weighted Sub = IF(ISINSCOPE(Areas[Area]),BLANK()...
- 1 year ago
I found a way of doing it ๐
Total per Category =IF(ISINSCOPE(Areas[Area]),BLANK(),SUMX (VALUES (Subcategories[Subcategory]),CALCULATE((MAX(Subcategories[Weighting])*SUM('Supplier Evaluation'[Score]))/100)))
LotteLaugesen
1 year agoHelper V
I found a way of doing it ๐
Total per Category =
IF(ISINSCOPE(Areas[Area]),BLANK(),
SUMX (
VALUES (Subcategories[Subcategory]),
CALCULATE((MAX(Subcategories[Weighting])*SUM('Supplier Evaluation'[Score]))/100)
))