Forum Discussion
Giada90
2 years agoHelper IV
dax formula
Hi, I have a datasource like this: I need to make a dax formula to have this table: how can I do? thanks
- 2 years ago
Hi! First, create a measure that is for cost:
Cost = CALCULATE(SUM('YourTable'[value], 'YourTable'[type] IN { "cost" })Next, create a measure for sales:Sales = CALCULATE(SUM('YourTable'[value], 'YourTable'[type] IN { "sales" })Now, in a matrix visual, you can put person in rows and put each of your measures in values.Alternatively, you could re-shape the data in Power Query so that it is already set up with a different column for cost and sales.Alternative to that, you could make a measure for value (Total = SUM('YourTable'[Value]), then in a matrix visual put person in rows, value (column) in the columns and Total measure in values.
Giada90
2 years agoHelper IV
THANKS!
audreygerred
2 years agoSuper User
You're very welcome!