Forum Discussion
DAX - Convert Matrix Visualization to Query Table?
Anonymous you can surely create another table from your matrix but would like to know the purpose of creating new table? What you are trying to achieve?
I have a series of costs set out in different tables, and at the end of the day I'm going to need to prepare a cost summary by month using the data in those tables. Some of the tables I can use as-is, and the values in others (like the labor costs data I show in my example) have to be adjusted according to a formula. For example, the measure I'm using here for my adjusted labor billings is:
Apportioned Labor Billings = IF('Measures Table'[Total Staff]>=3,
'Measures Table'[Total Staff Billing]*'Measures Table'[Apportioned Percentage],'Measures Table'[Total Staff Billing])So what I would like to do is to create a new table from this matrix, and sum these values (sum of Apportioned Labor Billings per month) with monthly values from the other tables to create a total cost per month figure.
Hope that makes sense! Thank you for your help!