If today is 5/2 I want to see last month's data for 4/1. For tomorrow on 5/3 I want to see last month's data for 4/2, etc I want to modify the code to not show me today's value for same time last month, I want the day before today.
I got this far from another question asked here. SSRS Prior Month, MTD Same period as current month
=sum(IIf(Year(Fields!AppDateActualDate.Value) = Year(DateAdd("d",-1, Now).AddMonths(-3)) And Month(Fields!AppDateActualDate.Value) = Month(DateAdd("d",-1, Now).AddMonths(-3)) AND DatePart("d", Fields!AppDateActualDate.Value) <= Dateadd("d",-1, Now), Fields!Application_Count.Value, Nothing), )