Viewing 15 posts - 4,996 through 5,010 (of 9,643 total)
Rudy,
I'm not sure what you are looking for here. Do you want to have ALL the data (parameter lists included) for a main report and subreports to come...
May 27, 2009 at 7:57 am
If you are doing this from work, does the corporate email server allow email to these addresses? Does the corporate firewall allow it out?
May 26, 2009 at 3:24 pm
I don't think you can enable/disable parameters in SSRS. You could set the parameter values to a specific values like 'N/A' or something like that.
May 26, 2009 at 3:21 pm
It sounds like you want the value in the child table to match one of the columns in the parent table. Can you explain the business case for this?...
May 26, 2009 at 3:19 pm
Assuming that there are 2 values for IsNew (1, 0) you could use:
=IIF(Max(Fields!IsNew.value) = 1, color, other_color)
May 26, 2009 at 3:13 pm
Select Convert(varchar(10), count(*)) from table
works for me.
May 26, 2009 at 3:05 pm
Is the data in different datasets? What controls are you using on the report?
May 26, 2009 at 2:44 pm
It looks to me that the reason is that the view has to materialize all the rows and then apply the filter, while the TVF is applying the filter as...
May 26, 2009 at 2:42 pm
Both of these queries return the results you expect for the sample data provided.
SELECT
*
FROM
dbo.Temp_Models AS M INNER JOIN
dbo.Temp_Attributes AS...
May 26, 2009 at 12:38 pm
Can you post the C# code calling the report?
May 26, 2009 at 12:09 pm
Well, logically you can't AND the criteria together where you would like to do it. You can't have attributeid = 7 AND attributeid = 29. attributeid can only...
May 26, 2009 at 6:54 am
I am not in a java shop so I am not aware of any java plug-ins for SSRS.
May 26, 2009 at 6:39 am
Lynn Pettis (5/22/2009)
Jan Van der Eecken (5/22/2009)
Lynn Pettis (5/22/2009)
May 22, 2009 at 5:16 pm
Jeffrey Williams (5/22/2009)
I was going to show the convert method also, but Sergiy beat me to it. You could also use CAST as in:CAST(Wages AS decimal(10,2)) / 100
Duh, why...
May 22, 2009 at 5:03 pm
ason (5/22/2009)
query selects rows based join with orders table without user function; if user function is...
May 22, 2009 at 5:02 pm
Viewing 15 posts - 4,996 through 5,010 (of 9,643 total)