Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi Team,
I hope you are doing well!
I created a matrix with individuals percentages, but I need to create the matrix with accumulative percentages in the rows and the Total
Image1. The matrix with individuals percentages.
Image2. The values selected for the matrix. In the values there is a measure created.
Image3. The result I expected.
I tried:
To created a running total but I couldn't achieve it.
I was thinkig in create a new matrix for the values in the Totals. Again, I couldn't reach that goals.
Note:
Thank you a lot!
Best Regards,
Hernán
Solved! Go to Solution.
Measure =
DIVIDE(
CALCULATE(
[Closed],
FILTER(
ALLSELECTED(Data1[DAYS]),
Data1[DAYS]<=MAX(Data1[DAYS])
)
),
CALCULATE([Closed],ALLSELECTED(Data1[DAYS]))
)
Measure =
DIVIDE(
CALCULATE(
[Closed],
FILTER(
ALLSELECTED(Data1[DAYS]),
Data1[DAYS]<=MAX(Data1[DAYS])
)
),
CALCULATE([Closed],ALLSELECTED(Data1[DAYS]))
)
User | Count |
---|---|
15 | |
10 | |
9 | |
9 | |
8 |