When I use
PY Apps = CALCULATE([CY Apps],DATEADD('Transaction Date'[Date],-365,DAY))
I get the Total $4,704 (which is what I was expecting)
When I use
PY Apps = CALCULATE([CY Apps],DATEADD('Transaction Date'[Date],-1,YEAR))
I get $13,926
why such a massive difference? how can it work correctly when i'm lowering it by days and completely fly off the handle when its Years
My Date Table is just a Calendar
Transaction Date = CALENDAR(MIN(Query1[received_date]),max(Query1[received_date]))
my model is just 2 tables, one table that has a list of dates with their respective sales, and then the other table is my date table