What you are doing is setting along the lines of creating nested IIf statements. That's not what you want to do. You want to create several IIf statements, one for each Month row. That will move the value out of the Savings column and into the correct month column.
Take a look at the SELECT statement I wrote. Each comma outside the IIf statements sets off another column. Also, inside the IIf statement, there is no "else" clause; "If the date criteria is met, put the Savings value here, otherwise, don't do anything."
Take a look at the SELECT statement I wrote. Each comma outside the IIf statements sets off another column. Also, inside the IIf statement, there is no "else" clause; "If the date criteria is met, put the Savings value here, otherwise, don't do anything."