Viewing 8 posts - 1 through 9 (of 9 total)
Try this
Expression for the page numbering...
="Page " & Code.GetPN(Not(ReportItems!tag.value Is Nothing),Globals!PageNumber)
Code for the page numbering...
Shared offset as integer
Public Function GetPN(reset As Boolean,pagenumber As Integer) as Integer
If reset
offset = pagenumber...
October 16, 2009 at 9:00 am
I ended up resolving this by calling a stored procedure that extracts the store number from active directory instead of using the .dll. Everything works great now!!!
April 21, 2009 at 10:19 am
Can't you use the dateadd feature in the base report date parameters
On the first of the month when the report is run
the following default will minus 1 month
dateadd("m", -1,now())
and use...
February 4, 2009 at 12:39 pm
Yes, I checked all of the docs on the MSDN Website. I have done everything recommended. Still no worky....
April 17, 2008 at 9:17 am
Yeah, restarted iis as well, still no worky.
April 16, 2008 at 3:25 pm
For example: my login id is my employee #. My employee number does not tell the report which store I am from. I use the login id...
April 16, 2008 at 1:05 pm
Either way, same error message.
April 16, 2008 at 12:21 pm
so in your where clause....try this
where (@FromDate is null or @FromDate <= datefield1)
and (@ToDate is null or @ToDate >= datefield1)
March 11, 2008 at 11:47 am
Viewing 8 posts - 1 through 9 (of 9 total)