Forum Discussion
Audrey_ADAPEI35
1 year agoFrequent Visitor
Problem with total
Hello, I've been trying for a while to resolve this measure. Can you help me? I want to calculate a measure that estimate the average cost of a "place" for each month et a total of year. ...
- 1 year ago
Hi Audrey_ADAPEI35 ,
Add a new measure with the following code:
Coût net à la place total Overall = SUMX(VALUES(Table[Month]), [Coût net à la place total] )This will pick up the value of your last measure and just sum it across the months
MFelix
Super User
1 year agoHi Audrey_ADAPEI35 ,
Add a new measure with the following code:
Coût net à la place total Overall =
SUMX(VALUES(Table[Month]),
[Coût net à la place total]
)
This will pick up the value of your last measure and just sum it across the months