Hello,
I have an active report code where
this.txtHdFiscalYear.Text=reportDataSet.Tables[1].Rows[0]["FiscalYear"].ToString();
this.lblJulCount.Text= Convert.ToString(Convert.ToInt32(this.txtHdFiscalYear.Text) -3) + " Meal Count";
this.lblSepCount.Text= Convert.ToString(Convert.ToInt32(this.txtHdFiscalYear.Text) -2) + " Meal Count";
I am converting this into SSRS
How can I write the above expression into SSRS ;I am trying to write in header field
=Fields!FiscalYear.Value - 3 + " Meal Count"
How to convert this.