I have some data that I'd like to put in a spreadsheet, and can't figure out the trick to doing this. Here is how the table in SQL Server looks, but of course I could export this to a flat file, or a smiple spreadsheet
name year month count
----- ---- ----- -----
aaa 10 6 555
bbb 10 5 22
aaa 11 2 345
ccc 10 1 44
There are actually about 350+ rows in this table. Roughly 35 unique names, and the dates will span from January of 2010 to March of 2012.
Here is how I'm hoping to get the spreadsheet to look. Of course, I would manually edit the headers once the data is in place:
------------------------------- 2010 -------------------------------- ---------2011 (etc)
Name Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec Jan Feb Mar (etc)
aaa 555 345
bbb 22
ccc 44
There will be one unique entry for each of the buckets.
Thanks for any help with this!
Bookmarks