Viewing 15 posts - 76 through 90 (of 249 total)
OK the loop is causing the problem.
Taking a look at the original logic, you would like to return the rows from the #SampleData table where the trandate is between a...
September 16, 2013 at 1:18 am
Try this...I have assumed that @PToDate and @PFromDate are parameters set within SSRS. If so then they cannot be set within the query text.
Workaround : create two additional TSQL...
September 6, 2013 at 6:39 am
As you are using TSQL at that point :
@PFromDate=@PFromDate -1
@PToDate=@PToDate-1
needs...
September 6, 2013 at 2:04 am
The best way would be to not have hard-coded charts but to dynamically add the charts dependednt upon the data. To do this create a subreport which contains the...
September 5, 2013 at 6:11 am
If you want to see all teachers with the courses they teach by default, then your report parameter should all for a ALL COURSES or ANY option. The teachers...
April 23, 2013 at 7:49 am
As Ray M stated the report you need to run first (main report) is to select all teachers who perform a selected course:
Select T.* from
Teachers T
inner join PerformsCourse...
April 23, 2013 at 7:29 am
Which tool are you using to view the XML? As stated before the cr and lf should not be there, but also should not matter.
I have reproduced the effect...
September 25, 2012 at 3:16 pm
Remove the bing larr unless your server allows web access directly or via a proxy.
September 19, 2012 at 4:11 pm
Did you select the bing layer option? If yes then your server must have a link to the bing web service.
September 19, 2012 at 3:39 pm
Investigate using the join and split functions.
=Join(Parameters!ParamName.Value,"#")..creates a single string of the multiple values with # between
=Split(Parameters!ParamName.Value,"#")..splits the single string into multiple values
Fitz
July 7, 2012 at 12:56 am
It would be better to use the category properties and filter the categories (x axis items) where the condition is true. Hiding the label will still leave a gap.
Add...
June 22, 2012 at 2:09 am
Below is an example using the AdventureworksDW2008 demo database where the productname language could be chosen. Given that the parameter @Source is a column name in the table and...
June 20, 2012 at 8:36 am
komal145 (6/13/2012)
I have team name something like below'Pegasus Texas Construction, LP'( which is one word)
declare @team varchar(max)
Set @team ='Pegasus Texas Construction, LP'
so i cannot take
(select * from dbo.SplitParameterValues(@Team,','))
So sometimes...
June 13, 2012 at 1:38 pm
Viewing 15 posts - 76 through 90 (of 249 total)