Viewing 15 posts - 2,371 through 2,385 (of 3,500 total)
What if you put a parameter in the place of the literal numeric values?
IIf(((DatePart("q",Today)=@theQuarter) and Fields!Qtr.Value=(@theQuarter-1)), False,True)
August 12, 2015 at 11:50 am
Exercise your googlefu!
and dig around on sqlauthority... it's probably on there.
August 12, 2015 at 11:12 am
can you upload your report (with an embedded SQL statement?)
hard to tell from here.
August 11, 2015 at 10:05 pm
The problem is that you have to remove the duplicates before you insert the batch of records.
This is one option:
insert into table_2 (col1,col2,col3)
select DISTINCT col1,col2,col3
from table_1 t1
where not exists (select...
August 11, 2015 at 3:59 pm
Are you sure that's the output you're expecting? Don't you mean you just want a normal output that you get from a comma-separated list of column names? Shouldn't the...
August 10, 2015 at 9:33 pm
Could you post some consumable sample data? It would make it a lot easier to answer your question. And include the correct answer based on the data provided.
August 10, 2015 at 3:22 pm
can you post the CREATE TABLE and INSERT scripts so we can reproduce the problem?
August 10, 2015 at 12:05 pm
You need to have two data values on your graph. In my example, I had two bars in my bar chart because I had two value fields.
In design mode,...
August 10, 2015 at 10:38 am
That's basically what I was trying to point out. I would explain to the person requesting this the kinds of issues this kind of design will cause. Like...
August 9, 2015 at 9:05 pm
Exercise your google-fu.
August 9, 2015 at 8:42 pm
The reason I prefer them as separate stored procedures is that I can grant rights to the SELECTS to one group, the INSERTS to another, etc. If you lump them...
August 9, 2015 at 6:18 pm
If you lump all the CRUD into one stored procedure, how do you control who can do what? If the objects are separate, you can add them to the proper...
August 9, 2015 at 5:48 pm
It's just my opinion, but why would you want one stored procedure per table? The problem this will cause down the road is if you want to deny one of...
August 9, 2015 at 5:28 pm
I did it with a plain Tablix, but you're missing the consumable data part. And how is 180+180+180=180?
So I'm not sure how to do this with a Matrix... (or...
August 5, 2015 at 1:30 pm
Viewing 15 posts - 2,371 through 2,385 (of 3,500 total)