I have a table with the following columns:AccountID | Year | Month | BalanceLet's say that the table contains the following data:AccountID | Year | Month | Balance1130.0000 | 2009 | 03 | 200.001130.0000 | 2009 | 06 | 200.001130.0000 | 2009 | 09 | 200.002230.0000 | 2009 | 03 | 200.002230.0000 | 2009 | 06 | 200.002230.0000 | 2009 | 09 | 200.00
Is there a way I can get the results to display like this:AccountID | Year | 03Balance | 06Balance | 09Balance1130.0000 | 2009 | 100.00 | 200.00 | 300.002230.0000 | 2009 | 400.00 | 500.00 | 600.00
Thank you for your help,Kevin