What is the most efficient way to fill forward the YTD calculations for the months that don't have records? Right now they don't show up. Thank you!
Here is my current query:
SELECT A.Incurred_Year
,A.Incurred_Month_Name
,A.Tableau_Date
,A.LOB
,A.Payer
,A.CIN
,A.Market
,A.BSMH_HCG_Group_Rollup
,A.Amt_Paid MTD_Paid
,SUM(A.Amt_Paid) OVER (PARTITION BY A.LOB, A.Payer, A.CIN, A.Market, A.BSMH_HCG_Group_Rollup ORDER BY A.Tableau_Date) AS YTD_Paid
FROM(SELECT H.[Incurred_Year]
,H.[Incurred_Month_Name]
,D.[Tableau_Date]
,L.[LOB]
,H.[Payer]
,H.[CIN]
,H.[Market]
,H.[BSMH_HCG_Group_Rollup]
,SUM(H.[Amt_Paid]) Amt_Paid
FROM [Population_Health_Prod].[dbo].[HCG] H
LEFT JOIN [Population_Health_Prod].[dbo].[Date_Table] D ON
H.Incurred_Year = D.[Year]
AND H.Incurred_Month_Name = D.Month_Name
JOIN [Population_Health_Prod].[dbo].[Contract_LOB] L ON
H.Payer = L.Payer
GROUP BY H.[Incurred_Year]
,H.[Incurred_Month_Name]
,D.[Tableau_Date]
,L.[LOB]
,H.[Payer]
,H.[CIN]
,H.[Market]
,H.[BSMH_HCG_Group_Rollup]
) A
GROUP BY A.Incurred_Year
,A.Incurred_Month_Name
,A.Tableau_Date
,A.LOB
,A.Payer
,A.CIN
,A.Market
,A.BSMH_HCG_Group_Rollup
,A.Amt_Paid