Question : Pivot on two columns

I'm not sure if my title is worded right, but here's my current working code:

SELECT     FundingRowID, AgreementSeriesID, AgreementSeriesName, FundingRowDescription, FundingStatus, RecipientName, FederalSharePercentage,
                      ' ' AS Empty, [2009] AS F2009, [2010] AS F20010, [2011] AS F2011, [2012] AS F2012, [2013] AS F2013
FROM         (SELECT     FundingRowID, AgreementSeriesID, AgreementSeriesName, FundingRowDescription, FundingStatus, RecipientName,
                                              FederalSharePercentage, FiscalStartYear, EstimatedAmount
                       FROM          FundingYearly
                       WHERE      AgreementSeriesID = 40) fy PIVOT (SUM(EstimatedAmount) FOR FiscalStartYear IN ([2009], [2010], [2011], [2012], [2013])) AS pvt

So it successfully creates columns on the 5 years, and lists the funding amounts for each.  I'd like to also have five more columns of the same 5 years, and have it list the FundingNotes for each.  Is this possible?

Answer : Pivot on two columns

If the above brings duplicates, then try like this:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
SELECT  FundingRowID, 
	AgreementSeriesID, 
	AgreementSeriesName, 
	FundingRowDescription, 
	FundingStatus, 
	RecipientName, 
	FederalSharePercentage, 
        ' ' AS Empty, 
	max([2009]) AS F2009, max([2010]) AS F2010, max([2011]) AS F2011, max([2012]) AS F2012, max([2013]) AS F2013,
	max([2009N]) as N2009, max([2010N]) as N2010, ... and so on ....

FROM (SELECT    FundingRowID, 
		AgreementSeriesID, 
		AgreementSeriesName, 
		FundingRowDescription, 
		FundingStatus, 
		RecipientName, 
		FederalSharePercentage, 
		FiscalStartYear,
		cast(FiscalStartYear as varchar) + 'N' as FYearNotes
		EstimatedAmount
	FROM          FundingYearly
        WHERE      AgreementSeriesID = 40
) fy 

PIVOT (SUM(EstimatedAmount) FOR FiscalStartYear IN ([2009], [2010], [2011], [2012], [2013])) AS pvt
PIVOT (MAX(fundingNotes) FOR FYearNotes IN ([2009N], [2010N], [2011N], [2012N], [2013N])) AS pvt2
group by FundingRowID, 
	AgreementSeriesID, 
	AgreementSeriesName, 
	FundingRowDescription, 
	FundingStatus, 
	RecipientName, 
	FederalSharePercentage
Random Solutions  
 
programming4us programming4us