Hello guys
So I've a table with more then 20.000 values and I need to do the accumulated sum of all of them...
I used this measure to do the calculation:
CALCULATE(
SUM('Medições'[Vazão]),
FILTER(
ALLSELECTED('Medições'[Data Hora Medição]),
ISONORAFTER('Medições'[Data Hora Medição], MAX('Medições'[Data Hora Medição]), DESC)
)
)
It worked fine.. but whenever I upload my Power BI to the online platform, they show the error "power bi the visual has exceeded the available resources"
I tried to create a column using this measure, in a sense that it would be more like a static column... but it also didn't work
Any ideas???