Feb 23, 2005 #1 ajhts Technical User May 1, 2001 84 US I have a query that pulls total minutes by payor type. It looks like this: Day# PartA PartB Other 1 65 1 20 1 36 How do I make this one line with the totals, example Day# PartA PartB Other 1 65 36 20 Any Ideas? Thank you very much! AJ
I have a query that pulls total minutes by payor type. It looks like this: Day# PartA PartB Other 1 65 1 20 1 36 How do I make this one line with the totals, example Day# PartA PartB Other 1 65 36 20 Any Ideas? Thank you very much! AJ
Feb 23, 2005 #2 traingamer Programmer Jun 18, 2002 3,270 US one way: Code: Select Day, Sum(nz(PartA,0), Sum(Nz(PartB... group by Day traingamer Upvote 0 Downvote
Feb 24, 2005 Thread starter #3 ajhts Technical User May 1, 2001 84 US Where do I place this code? Where in the query? Sorry to bother you again, AJ Upvote 0 Downvote
Feb 24, 2005 #4 lespaul Programmer Feb 4, 2002 7,083 US switch to the SQL view of a query, copy & paste the SQL, change the table and field names and then run the query. Leslie Upvote 0 Downvote
switch to the SQL view of a query, copy & paste the SQL, change the table and field names and then run the query. Leslie