I have a measure which sums records based on a filter, which typically is used in a monthly bucket. Now I would like to sum a rolling 12 month total. So if you look at the Jan 2013 measure it would include Dec 12, Nov 12 and so forth. I'm part of the way there in that I calculate the MaxDate in the context (e.g. 1/31/13), and want to SUMX with a filter of RowDate>MaxDate-365. The problem is that the only dates visible in the January 2013 context are Jan 2013 ones. I kind of need to reach out to the full context when doing that SUMX, whereas the MaxDate needs to respect the context. Any ideas how to address this, or simpler ways of doing rolling totals?