Hi Prateek1,
Looking at your data on the "Churners" sheet, I see that for each unique PRODUCT_ID there is only one unique value of churn_month, is that correct? To shorten your list and get a list of unique PRODUCT_IDs with their associated churn_month values,
proc sql;
select distinct(PRODUCT_ID), churn_month from Churners;
quit;
John