Prev: Printing Barcode Font in RS2008
Next: Form letter?
From: CSwartz on 12 Feb 2010 13:08 I would like to have a dynamic Report Title that includes the Start_Date and End_Date parameters I have for a report. I have had no luck finding this information elsewhere on the internet. So, the report title would be "Number of Letters between @Start_Date and @End_Date" Thanks.
From: Bruce L-C [MVP] on 12 Feb 2010 14:03 Use the expression builder. This is very common thing to do. Select expression for the text box. Put in =""Number of Letters between " & Then select the parameter that you are interested in. -- Bruce Loehle-Conger MVP SQL Server Reporting Services "CSwartz" <CSwartz(a)discussions.microsoft.com> wrote in message news:3BB27AEE-69E0-457B-9160-F3A8C8DA7257(a)microsoft.com... > I would like to have a dynamic Report Title that includes the Start_Date > and > End_Date parameters I have for a report. I have had no luck finding this > information elsewhere on the internet. > > So, the report title would be "Number of Letters between @Start_Date and > @End_Date" > > > Thanks.
From: Ben Watts on 12 Feb 2010 15:27 Just create a text box and put this. ="Number of Letters between "+cstr(min(datefieldused))+" and "+cstr(max(datefieldused)) "CSwartz" <CSwartz(a)discussions.microsoft.com> wrote in message news:3BB27AEE-69E0-457B-9160-F3A8C8DA7257(a)microsoft.com... >I would like to have a dynamic Report Title that includes the Start_Date >and > End_Date parameters I have for a report. I have had no luck finding this > information elsewhere on the internet. > > So, the report title would be "Number of Letters between @Start_Date and > @End_Date" > > > Thanks.
From: Uri Dimant on 14 Feb 2010 02:38 Hi "Number of Letters between = & Parameter!Startdate....." "CSwartz" <CSwartz(a)discussions.microsoft.com> wrote in message news:3BB27AEE-69E0-457B-9160-F3A8C8DA7257(a)microsoft.com... >I would like to have a dynamic Report Title that includes the Start_Date >and > End_Date parameters I have for a report. I have had no luck finding this > information elsewhere on the internet. > > So, the report title would be "Number of Letters between @Start_Date and > @End_Date" > > > Thanks.
|
Pages: 1 Prev: Printing Barcode Font in RS2008 Next: Form letter? |