the following error is displayed when deploy reports, "The Value expression for the report parameter ‘Year’ contains an error: [BC30201] Expression expected "
The problem is in default value expression for parameter Year.
=Switch(
CInt(System.DateTime.Now.Month) >3,
Year(Today()),
CInt(System.DateTime.Now.Month) <=3,
{Year(Today.AddYears(-1)),Year(Today())}
)
Any idea?