Viewing 15 posts - 2,101 through 2,115 (of 3,489 total)
The first item selected would be Parameter(0). So the number would be (ListIndex-1)
January 28, 2016 at 10:29 am
If I have a multi-value parameter @OrderID, I can get the number of items selected using [@OrderID.Count]. Is that what you were looking for?
January 27, 2016 at 5:58 pm
Now we're starting to get somewhere... We still need a couple of things: The create table scripts for the tables referenced in the views. Without them, it's impossible to...
January 25, 2016 at 3:38 pm
Looks like if you had a ParentID (the ID of the parent/family of the child) in each of the queries you listed, you could just inner join them on ParentID,...
January 25, 2016 at 11:18 am
If you're trying to create a database on your local machine, then when you log into SQL Server, the instance should be something like YOUR_MACHINE_NAME\INSTANCE_NAME. Can you log in...
January 25, 2016 at 11:07 am
You owe it to yourself to make friends with Books On Line ( the help file for SQL Server ). Hidden very carefully under the F1 key. ...
January 24, 2016 at 8:17 pm
What happened when you tried it using rectangles?
January 24, 2016 at 4:46 pm
it would help a lot of you posted some dummy data for your tables. (CREATE TABLE and INSERT scripts).
Also, do the UNIONS and the NOT EXISTS separately. Maybe...
January 22, 2016 at 3:33 pm
If you have dates in your table, you could use something like:
SELECT *
FROM Sales.Orders
WHERE Sales.Orders.OrderDate BETWEEN DATEADD(year,-1,GETDATE()) AND GETDATE();
You probably want to add 1 to the "one year ago" stuff...
BETWEEN...
January 22, 2016 at 12:01 pm
Sorry, I should have clarified. You don't need the totals query at all. You can do the counting/totals whatever in SSRS. If you use a simple stored procedure...
January 22, 2016 at 9:56 am
Magy,
Thanks for the sample data... would be easier to consume if you did it like this or with create table/insert scripts. Just makes it easier to reproduce your problem...
January 21, 2016 at 7:42 pm
If the date field is available, you could do something like this:
FORMAT(Fields!enrollDate.Value,"MMMM")
and it will format the date as a Monthname....
1="January" etc.
January 21, 2016 at 9:55 am
Drop a Matrix (not a tablix) onto the design surface of your report.
Drag [Staff] to the row,
[ServiceType] to the column
and drop the [Duration] to the value (intersection of Row &...
January 20, 2016 at 3:54 pm
What happens if you create a stored procedure that has a different name, but is essentially the same stored procedure? Sounds like something is happening on the server we...
January 16, 2016 at 6:32 pm
Why not just delete and recreate the dataset?
January 15, 2016 at 3:51 pm
Viewing 15 posts - 2,101 through 2,115 (of 3,489 total)