Forum Discussion

Chapin4u's avatar
Chapin4u
Microsoft Employee
8 years ago
Solved

Running Total for no Calendar table

Hi, I need help to create the running total of the third column of the left image. I do not have a calendar table, I just have Year Table on the right side of the image. The measure the third column is
% Countries vs World = DIVIDE([Sum Countries Mhl], [Sum World Mhl])
Pls help

 

I have always used this formula but know it won't work

RunningTotal =
SUMX (
FILTER (
ALLSELECTED ( 'Calendar'[DateKey] ),
'Calendar'[DateKey] <= MAX ( 'Calendar'[DateKey] )
),
[my_field]
)

5 Replies