I have months in columns from a table called dates_d.
I want the revenue of the prior month, so I did
calculate([rev],filter(all(dates_d),dates_d[date]>=edate(mina(dates_d),-1)&&dates_d[date]<edate(mina(dates_d),0)))
Which works fine
But then I do...