I have created a ssrs report and this report display last 12 months data. I have 2 parameters startDate and Enddate. The End date is always the current month and I want the start date to be the last 12 months. For example if my (End Date) current month is JAN 2018. I want my start date to be Feb 2017. I have below expression but this give me Jan 2017 date for my start date.
=DateAdd("M", -12,Today())
Today()
so it will give you Jan 2017. If you want is based on your parameters, you must use that parameter instead ofToday()
something like=DateAdd("M", -12, Parameters!EndDate.Value)
– Alan Schofield