Forum Discussion

Audrey_ADAPEI35's avatar
Audrey_ADAPEI35
Frequent Visitor
1 year ago
Solved

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.   ...
  • MFelix's avatar
    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