How to apply order by Window function in DAX
In PowerBI, I want to create a calculated table from table t. Using DAX, how can I write the equivalent of the following SQL query. Basically, here I am finding running sum (cumsum) using cnt ordered by date. select date, cnt, sum(cnt) over (order by date) as cumsum from t This is an example output.… Read More How to apply order by Window function in DAX