Forum Discussion
Anonymous
7 years agoNot applicable
Help with challenging SUMX calculated columns problem
Hello, I am trying to do this: for every row in Table1, filter Table1 between the rows StartDate column and StartDate plus 90 days and then within that filtered date range for Table1, sum up all ...
- 7 years ago
Anonymous
You may refer to the DAX below.
Column = VAR d = Table1[StartDate] RETURN SUMX ( FILTER ( Table1, Table1[StartDate] >= d && Table1[StartDate] <= d + 90 ), Table1[Revenue] )
parry2k
Super User
7 years agoAnonymous Read this post to get your answer quickly.
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490