Forum Discussion
Matrix with Measures and unique columns values
Hello
I am trying to create a matrix as in the following diagram where the values under "Actual" and "Budget" for each month are Measure values - Actual Revenue and Budget Revenue. But in the row I need to display the name of the measure category which is Revenue.
How do I display the custom measure category name (not the measure itself) in the row?
Thank you for any help.
Yoshi
Thank you for all your replies.
This has now been solved.
7 Replies
- amitchandak
Super User
Matrix has option "Show on rows", that will move you measure on the first column. But this input needs a bit of transformation
https://www.burningsuit.co.uk/blog/2019/04/7-secrets-of-the-matrix-visual/
Something like this. create a new table and use it
New Table=
union(
summarize (Table,Table[Month],"Name","Actual","Value",[Actual Revenue]),
summarize (Table,Table[Month],"Name","Budget","Value",[Budget Revenue])
)- Yoshimitsu411
Resolver I
Hi amitchandak
Thanks for helping me.
I created the following custom table.
SUMMARIZE('Calendar','Calendar'[Month],"Metric", "Revenue","Actual", [MTD Revenue Actuals],"Budget", [MTD Revenue Budget])After creating this, I can see the table in the correct format however the value of my measures MTD Revenue Actuals and Budget are incorrect. It seems Summarize is changing the values. Also I am not able to get the Months to sort correctly.Thanks- amitchandak
Super User
Yoshimitsu411 , You are not using year or month year. Assuming you have only one year of data.
Can you share sample data and sample output.