Viewing 15 posts - 1 through 15 (of 23 total)
Thanks! I think I see the light now. I appreciate your help.
July 25, 2016 at 1:32 pm
Thanks. I understand the comment portion. What has me confused/concerned is that a stored procedure with a parameter of data type float will take a non-numeric value like...
July 25, 2016 at 1:02 pm
I am not sure if this applies to your situation....
I ran into a problem returning data when a stored procedure used an alias for a field. The sproc would...
April 8, 2015 at 10:48 am
In the spirit of "Never let the machine win"...
Did you consider modifying the query to generate the number you need. An example
WITH cteAverage AS
(
SELECT
...
June 19, 2014 at 12:40 pm
Possibly the ability to refer to the value of a specific textbox within SSRS would help here. SUM(ReportItems!TextboxName.Value).
June 19, 2014 at 10:23 am
I have had success including the grand total in the dataset definition.
SELECT typeid
, invamt
, (SELECT SUM(invamt) from SomeTable) AS GrandTotal
FROM SomeTable
In this case the expression would be
=IIF(Fields!invamt.Value = 35, SUM(Fields!invamt.Value)/max(Fields!GrandTotal.Value)...
February 6, 2014 at 9:08 am
Did you consider setting up the stored procedure to return a 3 field table, with fields Subtotal, GrandTotal, and AdminTotal?
February 5, 2014 at 12:42 pm
Cascading parameters provide a way to reduce the number of user choices in the parameter drop down box.
Parameter 1 is created as a base. Then it is used as...
January 30, 2014 at 2:06 pm
This falls into the "make it work" category.....Sometimes they look like numbers but sort like text. I just convert to integer to make sure the sort works correctly.
November 20, 2013 at 7:57 am
It appears as if Fields!Month.Value is a text string, since it is sorting alphabetically. Do you have a corresponding date field which would allow you to pull the month...
November 19, 2013 at 10:19 am
Since the last page you want is a single page, you should be able to set the "Page break at start" property to True for the first item to appear...
November 5, 2013 at 12:05 pm
I would use a separate dataset to generate the data. The following query creates 36 months of entries beginning at 1/1/2011.
SELECT (CHOOSE(DATEPART(m,dateadd(month,number,'20110101')),'JAN','FEB','MAR','APR','MAY','JUN','JUL','AUG','SEP','OCT','NOV','DEC'))
+ (CONVERT(nvarchar(4),DATEPART(yyyy,DATEADD(month,number, '20110101'))))
from master..spt_values
where type =...
October 30, 2013 at 8:28 am
FYI..the syntax worked in my environment. Could it be a data problem?
October 25, 2013 at 10:50 am
The merged cells in an Excel export from SSRS are generally caused by report titles or text boxes that do not exactly line up with the column breaks in the...
October 22, 2013 at 8:33 am
Viewing 15 posts - 1 through 15 (of 23 total)