Viewing 15 posts - 1 through 15 (of 49 total)
Vandy,
You need to add WHERE clauses to your 2nd and 3rd data sets. For example - if the parameter for the first pick is @ProductManager then the query for the...
August 22, 2006 at 4:53 pm
Tracy,
It is possible to conditionally hide rows based on their contents.
Select the row you wish to hide / not hide and then go to the Properties area. Under the Visibility property click the...
June 29, 2006 at 8:26 pm
Syed,
This from MS Books on Line.
=Join(Parameters!Title.Value, ", "))
Provides a comma delimeted list of the selected values. You could also use .Label if the values aren't user friendly.
Mike
June 25, 2006 at 3:13 pm
Kerrie,
Your code looks reasonable. I'd comment out the date test and see what the query produces without it, to eliminate the possibility the problem is elsewhere. Also, you can shorten...
June 19, 2006 at 1:36 pm
June 14, 2006 at 10:30 am
if @var in (@paramlist) This will work if you place your query in the report as text, but not in a procedure.
Mike
June 7, 2006 at 9:38 am
Toni
You need to make the calculated dates 'dependant' on the date entered by the user.
Instead of:
SELECT CONVERT(char(11), MAX(src_date)) AS src_date_cur
, CONVERT(char(11), dateadd(mm,-1, MAX(src_date))) AS src_date_pre
FROM tbl_src_date
Try
SELECT dateadd(mm,-1,@UserEnteredDate) as ....
Make...
June 6, 2006 at 5:42 pm
Jon
Pass the parameter just like you would any other. Procedure needs to define the value as varchar, as it's simply a comma delimited string. Trick is to parse this string...
June 6, 2006 at 5:15 pm
My dilema, at least as I see it, is that the parent report has the page footer spoken for. I could add a second table to the body, but then...
May 25, 2006 at 5:56 pm
Senthil,
May not be the most efficient but should work for you. It will report each date in the range whether there were registrations / cancellations or not.
Mike
DECLARE
@startdate ...
May 18, 2006 at 11:35 am
Ramon,
Assuming that any given customer can have any number of invoices I'd try this.
=Iif(RunningValue(Fields!CustomerID.Value,
countdistinct,nothing) mod 2,"Blue",
May 17, 2006 at 8:31 am
What I came up with, and never have liked, was to create two additional parameters. The first identical to the multi-valued one the user sees. The defaults are set...
May 16, 2006 at 7:50 pm
I too bumped into this new 'feature', but had yet to dig deep enough to find out what the cause was. Some of our servers have had SP1 installed and...
May 12, 2006 at 9:50 am
Macca,
My first suggestion would be what Kevin offered: MyDateTime = MyDateColumn + MyTimeColumn. Then realized he was correct in that this will not work if your time value...
May 12, 2006 at 9:17 am
Viewing 15 posts - 1 through 15 (of 49 total)