Forum Discussion
Anonymous
7 years agoNot applicable
Add calculated data to a table
Hi everyone, I have a dataset like this: Section Customer PL line Amount 1 A Revenue 10 1 A Profit 4 1 B Revenue 7 1 B Profit 2 2 A Revenue 5 2 A Prof...
parry2k
7 years agoSuper User
Anonymous you can create matrix visual wiht a measure for sum to show only in case section is 1, you can change Total lable to expense in format pane.
- Anonymous7 years agoNot applicable
parry2k
Thanks but matrix is not an option for me. this is a small step in a very big step. I would like to change the data source with measure like calculatetable, sumarize, etc so that I can use it in my other measures. My first idea is to create another table then append it but not really sure how to do it.- parry2k7 years agoSuper User
Anonymous you can surely add new table and add new rows in new table. here is quick example based on your current model. you can always tweak as per your need.
so first row of union, get full table with selected column and 2nd row just filter on section = 1 and calculate the expense.
Expense New = UNION( SELECTCOLUMNS( expense, "Customer", [Customer], "PL Line", [PL line], "Section", [Section], "Amount", [Amount] ), SELECTCOLUMNS( FILTER( expense, expense[Section] = 1 ), "Customer", BLANK(), "PL Line", "Expense", "Section", [Section], "Amount", CALCULATE( SUM( expense[Amount] ), expense[PL line] = "Revenue" ) - CALCULATE( SUM( expense[Amount] ), expense[PL line] = "Profit" ) ))