Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello Folxs,
I need support to manage the view of the matrix ( Matrix Collapse summarization - Average instead of SUM) in PowerBI as in screenshot below.
1. The matrix missing some infomration from the orginal table, sumrizing the simiar rows, which not needed and need to show all records.
2. Show the avreage for main collapse instead of SUM the Target %! for 3 level of Type, Cat and SubCat. As in screenshot below (Attached the powerbi file Link to PowerBI File 😞
Much apprciated !
Thanks,
AMD
Solved! Go to Solution.
It's best practice to create explicit measures instead of using implicit measures. Try creating these explicit measures:
Sum Sales = SUM ( Table3[Sales] )
Sum Target = SUM ( Table3[Target] )
Target Percent = DIVIDE ( [Sum Sales], [Sum Target] )
Proud to be a Super User!
It's best practice to create explicit measures instead of using implicit measures. Try creating these explicit measures:
Sum Sales = SUM ( Table3[Sales] )
Sum Target = SUM ( Table3[Target] )
Target Percent = DIVIDE ( [Sum Sales], [Sum Target] )
Proud to be a Super User!