Hello,
I have a table that is currently formatted in this way:
Country | Product | Date | Store Centre | Payment Provider | Client | Transaction Type | Total | Project |
USA | SKU100 | 1/20/2017 | a | visa | ab2 | repurchase | 14 | A |
Canada | SKU100 | 1/15/2017 | b | mastercard | ab1 | initial | 15 | A |
Italy | SKU110 | 12/5/2016 | a | visa | ab4 | repurchase | 4 | C |
I also have a DimDate table.
I would like to know how I can get the moving sum of all transactions (over 14 days) in the last column that match the day in the table. Unfortunately my attempt has not been very successful:
14 Days:=CALCULATE(sum('All Transactions'[total]),
ALL('DimDate'),
FILTER(ALL('DimDate'),'DimDate'[Date]>=MAX('DimDate'[Date])-14&&'DimDate'[Date]<=max('DimDate'[Date])
) , VALUES('All Transactions'[Country])
)
What this returns is just the last 14 days' total values (not as a running total either. Any ideas on how to address?
Thanks.