Viewing 15 posts - 2,821 through 2,835 (of 3,507 total)
WHERE fields.Name NOT IN ('sale payment', 'initial transaction')
November 3, 2014 at 2:49 pm
You could do it by creating a calculated field in your dataset. Something like this:
=IIF(Fields!EnrollWeek.Value<=5,"0-5 days",IIF(Fields!EnrollWeek.Value<=10,"6-10 days",IIF(Fields!EnrollWeek.Value<=15,"11-15 days","16+ days")))
I had a dataset with numbers (EnrollWeek), so that that's what...
November 3, 2014 at 1:24 pm
If your report is based on a stored procedure, it's not hard at all. Say your report is based on a parameterized stored procedure, something like
CREATE PROC GetReportData @Param1...
November 3, 2014 at 12:37 pm
How would you determine which team is the "main" one for a person? Not sure how you would remove duplicates if you have a relationship like this:
Person---(1,M)--Membership--(M,1)---Team
unless you had...
November 3, 2014 at 9:35 am
October 30, 2014 at 3:11 pm
Yeah, what Luis said! That's what I meant! (suuuure!)
October 29, 2014 at 10:19 pm
use a CASE statement to group the age ranges into two groups, then summarize on that. What have you tried so far?
October 28, 2014 at 11:02 pm
I think I had to read this about 5 times before i figured out what you were asking... Took a bit to realize that the second invoice is a...
October 28, 2014 at 10:12 pm
One option:
=Format(Globals!ExecutionTime,"dd") & "th " & Format(Globals!ExecutionTime,"MMMM yyyy") & ", " & Format(Globals!ExecutionTime,"hh:mm")
October 28, 2014 at 6:34 pm
Again, the original query produces a list of "programs" that a "player" and or "member" from a particular family are eligible to register for. The result set needs to exclude...
October 25, 2014 at 10:45 pm
I would probably do it by using a Calendar table. There are a bunch of articles around here this one: http://sqlserver2000.databases.aspfaq.com/why-should-i-consider-using-an-auxiliary-calendar-table.html
You might have to add the column for Nth...
October 21, 2014 at 5:16 pm
I would run the inserts one at a time and see if they throw errors. Either that or put in some dummy print statements to see which insert/select statement...
October 21, 2014 at 2:12 pm
Here is the report... Hopefully my table/field names match yours. If not, I can share the table scripts too.
Just realized... I'm using 2012, so I may have to redo...
October 17, 2014 at 11:41 am
I think I sorted it out. The problem is that it requires a Calendar table/ table valued function in order to work (because you have to have all the...
October 16, 2014 at 10:46 pm
Viewing 15 posts - 2,821 through 2,835 (of 3,507 total)