Viewing 15 posts - 76 through 90 (of 92 total)
The Club info is in that table (or View)
The attribute.PersonMembership is the one with the invoices (membership info)
August 18, 2015 at 11:26 am
It is showing but showing 2014 and 2015.
It should show 2015 AND a null row like ClubNo 8004
So neither solutions are showing ClubNo 5305 null row like ClubNo 8004.
Only difference...
August 18, 2015 at 8:26 am
Thank you both ...
however ...
ChrisM@Work,
yours is showing 2014.
and both are not showing ClubNo 5305 with a null membership info like ClubNo 8004.
NOTE: 5305 has memberships in 2015 and prior years.
8004...
August 18, 2015 at 8:04 am
I will try this.
Yes, all memberships that end on 6/30 of any given year.
Need to see all Clubs memberships ending on 6/30
of current year (2015) or next year (2016)...
August 18, 2015 at 7:20 am
I will try this.
As for the date range
Need to see all Clubs memberships ending on 6/30
of current year (2015) or next year (2016) when the MemberTypeID = 1, 2,...
August 18, 2015 at 7:20 am
For anyone else needing a solution
Got this to save as a SQL View thanks to Brian
NOTE: the ColName fields must be the same data type.
WITH Base AS
(SELECT RowNum, TeamID,...
August 20, 2014 at 10:29 am
Thank you very much!
that worked!
I see the stored procedure now.
spTeamCoachPivot
I did do the
exec dbo.spTeamCoachPivot and am able to see the results in the SQL View.
However I can't save the...
August 18, 2014 at 6:51 pm
yes, it's saved as a .sql (script)?
not sure really how to do much of this in SQL
Newbie :unsure:
August 18, 2014 at 5:50 pm
I don't. I used the title that the link I found I posted states.
Just went with it.
I know that in Access you can do first or last as Value in...
August 15, 2014 at 4:17 pm
Yes, in the sense, MAX is in fact Aggregating. I think it's because of WHAT you can do with it is why it's looked at / considered as "not" really...
August 15, 2014 at 4:07 pm
gbritton1 (8/15/2014)
PIVOT (max(TeamId) FOR PersonId IN ([CoachFN], [CoachLN], [CoachEmail])) pvt
should be:
PIVOT (max(TeamId) FOR PersonId IN (PER00388878, PER00500029,PER00530907,...
August 15, 2014 at 1:08 pm
Ok
NOTE: i provided code that's sort of working
with the data set (though just a few records)
as well as the current output.
I thought that was enough information?
1) sample data set
2) explanation...
August 15, 2014 at 12:43 pm
lol, 'tis true ... report requesters
I did see the concat option, unfortunately she does not want it in one field.
August 15, 2014 at 10:31 am
JeeTee (8/15/2014)
Is this for a...
August 15, 2014 at 9:42 am
Viewing 15 posts - 76 through 90 (of 92 total)