I have a Microsoft SQL server pivot query that gets a sum of values with rows per category and monthly columns 1 to 12
I currently have 13 columns returned in the query, for example, with no data after april:
Category [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12]
-----------------------------------------------------------------------------------
Food 150 200 0 125 null null null null null null null null
Drink 140 0 90 115 null null null null null null null null
Per category, I need to add the total sum of values, as well as the average value ignoring months with no data. For the data above, I need to add the columns:
Sum Average
475 118.75
345 86.25
I tried many different methods, but I couldn't find a way.