Viewing 15 posts - 1,486 through 1,500 (of 3,489 total)
If you just want to learn cursors, then crack open Books Online and read. Write a bunch of cursors. You basically said "I know cursors are terrible, but I want...
June 25, 2017 at 6:58 pm
Did you finish Data Warehouse Toolkit and Star Schema: The Complete Reference yet?
June 23, 2017 at 9:05 pm
Can't speak for anyone else, but without data and maybe a screenshot of your report, it's impossible to say.
June 22, 2017 at 8:55 am
Why not use a Calendar table?
http://www.sqlservercentral.com/blogs/dwainsql/2014/03/30/calendar-tables-in-t-sql/
Then you can filter down to what you want (like X number of Mondays), by filtering for the day and using...
June 20, 2017 at 9:39 pm
He doesn't??? Jeff's code is about the safest stuff out there. What if you printed out the code for it and showed it to him? The code is commented so...
June 20, 2017 at 8:28 pm
Instead ofSWITCH((Fields!WeekPercentage.Value>Parameters!Percentage.Value) &(Fields!Percentage.Value>Parameters!Percentage.Value) ,"RED","YELLOW")
tryIIF((Fields!WeekPercentage.Value>Parameters!Percentage.Value And Fields!Percentage.Value>Parameters!Percentage.Value ,"RED","YELLOW")
June 20, 2017 at 8:21 pm
What did you try? This is not a "Please do my work for me" site. Do it yourself, because you are the one that is going to be supporting it,...
June 18, 2017 at 9:42 pm
Sounds like use a rectangle and set a page break after
https://stackoverflow.com/questions/3230669/inserting-a-page-break-into-an-ssrs-report
June 18, 2017 at 9:28 pm
You can't do a multi-select match with = in your filter. Right-click your dataset, and go to Dataset Properties. Under the Filters tab, you need to change the operator in...
June 16, 2017 at 10:50 pm
June 16, 2017 at 3:18 pm
general rule of thumb with aggregates / GROUP BY.
Columns in the SELECT clause must be either aggregates (Sum, Min, Max, Avg...etc) OR they must be in the GROUP...
June 13, 2017 at 10:18 pm
SSIS package to get the file (download), then import the text file. Then schedule it using a job?
June 10, 2017 at 10:47 pm
If you added the calculated field to your dataset, then you can use it just like a normal field (as it if were in the original dataset). If not, I...
June 7, 2017 at 1:47 pm
How long is a piece of string?
Is this a one-off or do you need to import different files with the same structure?
If it's a one-off you can use...
June 6, 2017 at 11:27 pm
I'm using SSRS 2016, but I'm pretty sure this is still the same.
Open your report, and switch to design mode.
Then go under the Report menu to Then...
June 6, 2017 at 3:22 pm
Viewing 15 posts - 1,486 through 1,500 (of 3,489 total)