Viewing 15 posts - 2,626 through 2,640 (of 3,500 total)
Freeze Top Row in Excel.
March 17, 2015 at 9:06 am
Not enough inserts to recreate the table data you're working on.
You REALLY need to read Jeff's article on how to get good help.
Please read this article.
March 16, 2015 at 11:38 pm
Can you post the Create Table and INSERT statements to reproduce this? (Figured you would have figured that out already. You've been here for a while!)
March 16, 2015 at 1:04 am
Did you create the stored procedure by executing the code to create it? Something like...
CREATE PROCEDURE myProcName
@param1 VARCHAR(20)
, @param2 INT = 10
AS
SELECT field1, field2, field3
FROM MyTable
WHERE field1 = @param1
AND...
March 15, 2015 at 10:17 pm
I have two tables one lists sites names while the other lists the completed tasks with the date of completion for the sites (the same site could have completed the...
March 14, 2015 at 2:56 am
Looks to me like you're missing something. Is there no "Account" table somewhere? If you think about a bank account, at its simplest, it's something like:
CREATE TABLE Account(
...
March 13, 2015 at 7:40 pm
#1: one way is to use a value list of the possible values. If you create a dataset of the values you can just use it.
#2. You can use...
March 12, 2015 at 5:47 pm
Maybe you should have explained that to begin with.
Bite me.
March 12, 2015 at 1:12 pm
Why not just filter the dataset?
March 12, 2015 at 9:48 am
Where do you get the data from?
You could transpose it in SSIS or Excel (that's what I used) and then it would be easy to use in SSRS. Then...
March 10, 2015 at 10:14 pm
duplicate post! oops!
Okay, I think I got it...
Here's the stored procedure (I'm sure Dwain will school me on doing it this way, but I was just trying to get it...
March 10, 2015 at 8:44 pm
Robert,
Well, no wonder you're having such a horrible time of it. I wouldn't have a clue how to graph something like that. What are you starting with, something...
March 10, 2015 at 8:44 pm
If that's the structure of your data, no wonder. Your structure looks wrong.
Got consumable data? (Something I can drop into SSRS and build a quick chart?)
March 10, 2015 at 1:33 pm
Guess I'll have to check my syntax.
I would have thought EXISTS will work better because theoretically it stops looking as soon as the condition is false.
Thanks Wendell!
Pieter
March 10, 2015 at 10:27 am
What does your query/filter look like?
IF you can modify the stored procedure, you can use something like this:
SELECT city, companyname, custid
FROM ...
March 10, 2015 at 2:52 am
Viewing 15 posts - 2,626 through 2,640 (of 3,500 total)