got it.

was bad syntax
correct DAX is

CumulativeGCI MEASURE = 
CALCULATE(
	SUM(PBI_KPIs[GCI]), 
		FILTER(ALL('DateKey'[Date]), 'DateKey'[Date] <= MAX ('DateKey'[Date])
		)
)