is not fun. Can someone please help me reign this one in please?
I am trying to take the difference of H0A0 and 10Yields and then create a new row that calculates the average of all of the variances in my series.
Is that possible?
Here is where I am stumped
Code:SELECT tbl_10yr_monthly.period, tbl_10yr_monthly.px_last AS 10Yields, tbl_H0A0_monthly.px_last AS H0A0, [H0A0] - [10Yields] AS Spreads, AVG(Spreads) As Average FROM tbl_10YR_monthly, tbl_H0A0_monthly