Viewing 15 posts - 46 through 60 (of 88 total)
The following will give you yesterday's date:
In T-SQL
DATEADD(dd,-1,GETDATE())
In VB/SSRS
=DATEADD("d",-1,NOW())
HTH
toolman
June 27, 2008 at 2:58 pm
singhs2,
Please copy and paste your exact syntax and the error message here. That may give us a clue why something that typically works every time is not working for...
June 27, 2008 at 9:16 am
Sorry. Didn't notice at first that you had different fields.
Try
=SUM(IIF(Fields!Status.Value = "C" AND Fields!Race = "W", 1, 0))
I think that should work for you.
Here's a couple good resources for...
June 25, 2008 at 2:04 pm
Try
=COUNT(IIF(Fields!Status.Value = "C", Fields!Status.Value, Nothing))
June 25, 2008 at 1:36 pm
Found this on MSDN, maybe will help?
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2656661&SiteID=1
June 4, 2008 at 12:06 pm
I posed your situation to our DBAs. Here's their reponse and a little further explanation.
"OK. He can try the following:
1. Ensure that smtp mail...
June 4, 2008 at 8:44 am
Unfortunately that's fairly typical SSRS behavior for longish running reports. What's happening is you're hitting some kind of timeout. When that happens the user's stored credentials go out...
June 3, 2008 at 8:10 am
My understanding of the advantages of shared vs. timed is primarily the server resources involved. Here is a comparison of the two prepared by one of our DBAs.
"Shared...
May 15, 2008 at 3:20 pm
That's apparently the case when running subs as individual jobs (i.e. Timed Subscription) and not on Shared Schedules. At least that's when I get NULL values.
Unfortunately, if you aren't...
May 15, 2008 at 11:56 am
This may likely get you more (or less) than you want but it will set you in the right direction with the tables and columns to query. Hope it...
May 15, 2008 at 9:25 am
Yes, you'll need to query the tables in the ReportServer database on your report server box.
In particular look to these tables:
catalog - contains data for deployed reports
users...
May 8, 2008 at 3:31 pm
I think what's happening is your subreport placeholder remains the same width regardless of how your subreport renders. If your place holder is 3 columns wide in the main...
May 8, 2008 at 12:24 pm
I think what's happening is you don't have your main report and subreport linked properly. You're likely just getting info back from the first record in the subreport dataset.
Does...
May 1, 2008 at 11:22 am
When you group on the voucher_ID, you will automatically get a header and footer for the group in addition to the table header and footer.
You'll want your subreport in the...
May 1, 2008 at 10:38 am
Viewing 15 posts - 46 through 60 (of 88 total)