Viewing 15 posts - 2,806 through 2,820 (of 3,489 total)
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
One way is to just add a Page Header to your report and put the textbox in it.
October 16, 2014 at 3:42 pm
So using T-SQL isn't an option, because you're using SSRS?
If you can use T-SQL, something like this should work:
SELECT HeatNo, MAX(Frame) AS MaxFrame, MAX(Window) AS MaxWindow
FROM (
SELECT 1 AS...
October 16, 2014 at 2:59 pm
dates are numbers, so change the formatting in the textbox properties.
October 16, 2014 at 2:18 pm
Viewing 15 posts - 2,806 through 2,820 (of 3,489 total)