Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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]))
)
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.