Viewing 15 posts - 2,896 through 2,910 (of 3,396 total)
That's what I was thinking at first, but the two values are not in the same record. That's why there's all the weird coding...
June 4, 2014 at 8:28 am
This seems to work... If you post consumable data (create table scripts, and inserts), it's a lot easier for people to help you - since you've set up the...
June 3, 2014 at 10:07 pm
DECLARE @InputString VARCHAR(15) = '1.234;0;0;0;0;0;0;0';
PRINT LEFT(@InputString,(CHARINDEX(';',@InputString,1)-1));
June 3, 2014 at 1:13 pm
Not much to go on here, but there are two parts to filtering a dataset if you are using report-level parameters that you define yourself (as opposed to inheriting them...
June 2, 2014 at 1:53 pm
What type is the parameter? Should be an integer. then you can do something like
=Parameters!EndWeekNo.Value + 1
June 2, 2014 at 1:50 pm
I would put it all in the stored procedure, and if you can avoid using the view, do it. Think about what would happen if your view got dropped...
June 1, 2014 at 8:02 pm
The only way I can think of doing it is by adding a parameter that prompts for Export format, and then hiding the tablixes you don't want exported. maybe...
May 30, 2014 at 1:50 pm
Most likely because there's a significant difference between the meaning of @StatisticsDate and StatisticsDate in your statement.
@StatisticsDate is always a variable. When the parser sees "StatisticsDate" it has to...
May 30, 2014 at 8:14 am
Did you compare it to a standard MAX(Date) with a GROUP BY clause?
May 29, 2014 at 6:37 pm
Too young? No such thing, I think.
Too inexperienced? That's another question entirely.
If you really want to be an SSRS expert, you need to learn T-SQL (Microsoft's version of...
May 29, 2014 at 2:54 pm
So do you really mean "page breaks" instead of "control breaks"?
maybe this discussion will help?
May 28, 2014 at 8:47 pm
Is using SSRS an option or do you need to do it in T-SQL? The nice thing about doing it in SSRS is that the columns are dynamic.
May 27, 2014 at 7:00 pm
select only the data from the first table that is not available in the second table
SELECT A.*
FROM A LEFT JOIN B ON
(several joins - on the columns that match)
WHERE B.ForeignKey...
May 27, 2014 at 2:11 pm
I do not know how to merge the cells.
depending on where you are in the tablix, you may or may not be able to. What I mean is, it's going...
May 27, 2014 at 10:50 am
However, the bar chart subreport is not getting the selected parameter value
...
Only thing I can think of is that you didn't set the subreport's parameter to be equal to outer...
May 27, 2014 at 6:36 am
Viewing 15 posts - 2,896 through 2,910 (of 3,396 total)