Hello -I am trying to write a query that will display some trending of tickets solved per week and then a final calculated/derived column that shows the trending as a percentage (positive or negative) from the last two weeks.My table is like this:CREATE TABLE Ticket_Trending( UserName varchar(20), ReportDate datetime, Ticket_Type1 int, Ticket_Type2 int, Ticket_Type3 int, Ticket_Type4 int) INSERT INTO Ticket_Trending ('joe', '2008-10-03', 75, 120, 50, 12)INSERT INTO Ticket_Trending ('cathy', '2008-10-03', 42, 8, 410, 82)INSERT INTO Ticket_Trending ('joe', '2008-10-10', 65, 88, 57, 4)INSERT INTO Ticket_Trending ('cathy', '2008-10-10', 40, 2, 350, 77)INSERT INTO Ticket_Trending ('joe', '2008-10-17', 50, 80, 52, 3)INSERT INTO Ticket_Trending ('cathy', '2008-10-17', 42, 0, 298, 3)My other thought is that i just need to query the data and then dump into Excel and then use that to pivot the data.Thanks for any thoughts. - will