Viewing 15 posts - 1 through 15 (of 88 total)
Are the values you're trying to count exactly = to LA? All upper case, no leading or trailing spaces that need to be trimmed. SSRS can be really...
August 26, 2011 at 1:34 pm
Try using SUM instead of COUNT.
SUM(IIF(your field Value = "LA",1,0))
This way it's summing ones or zeros instead of conditionally counting fields.
August 26, 2011 at 12:13 pm
Substitute IIF( for IF, a comma for THEN and another comma for ELSE and place a close paren ')' at the end.
IIF syntax is IIF( check expression, true expression, false...
April 14, 2010 at 6:38 am
Just so you know why the IIF doesn't work: IIF is a function. SSRS reads the entire statement kind of from the inside out. It sees the division operation before...
April 12, 2010 at 2:06 pm
I'd go with Lowell's solution instead of my temp table option.
March 22, 2010 at 12:35 pm
Select your data into a temp table and do a final select that sums the counted fields and groups by the location and year.
That's one quick and dirty way to...
March 22, 2010 at 12:17 pm
Didn't even know we could do such things Jack.
At your suggestion, it's been done. Thanks
November 19, 2008 at 1:22 pm
I use the query below to generate a dataset for a report that tells me when subscriptions fail to send e-mail or post reports to file shares based on the...
November 19, 2008 at 12:00 pm
I don't think you can do it. At least I can't see any property for text direction or text orientation. Sorry I couldn't help.
November 19, 2008 at 11:37 am
I like these two:
Microsoft SQL Server 2005 Reporting Services
Brian Larson
McGraw-Hill, Hardcover, Published December 2005, 767 pages, ISBN 0072262397
Professional SQL Server 2005 Reporting Services
Paul Turley, Todd Bryant, James Counihan, Dave...
November 11, 2008 at 8:26 am
Try using these resources then ask again if you still can't figure it out.
http://msdn.microsoft.com/en-us/library/aa237787(SQL.80).aspx (SSRS2000)
http://msdn.microsoft.com/en-us/library/ms159150(SQL.90).aspx (SSRS2005)
HTH
November 6, 2008 at 8:50 am
is250sp (11/5/2008)
=iif(Fields!PROD_MIN.Value > 0, Fields!THROUGHPUT.Value / (Fields!PROD_MIN.Value / 60), 0)
result: When PROD_MIN is > 0, calculation is done, but when its zero, it display #Error
I...
November 5, 2008 at 10:01 am
Select all of your cells within your table (click the upper leftmost cell and drag to the lower rightmost cell) and enable all borders for them. Think that should...
November 4, 2008 at 1:42 pm
latingntlman (10/29/2008)
October 29, 2008 at 1:01 pm
Couple thoughts...
Christophe - SSRS from it's inception has been able to use any ADO.NET data as a datasource. I've even used an Excel spreadsheet as a datasource.
Regarding Hacker's...
October 29, 2008 at 12:16 pm
Viewing 15 posts - 1 through 15 (of 88 total)