There are a ton of posts on how to set the default date parameter in an SSRS report. I have tried many of the solutions, but I am still getting an error code of <Default Value 1> Value is not a date or time
My parameter's data type is Date/Time (The underlying field's data type is also a date)
I am currently using: dateadd("m",+3, today()) as the default value
I have tried several variations to include cdate, format, getdate(), today(), etc.
Any other ideas on how to format the default value for the parameter?
My goal is to set the default value to 3 months from today's date, but I am flexible on that for now as long as I can figure out how to set the default date, I can play with the syntax. The final goal will be to add 3 months to the end of the current month. Ie today is November 28, 2020, so my default will be the last day of February 2021.
Thanks, Brent


