I am trying to get the percentages of each of our fields displayed in a table but I have to take column 1 (delinquent payment 2) and divide by column 2 (loan id)
when I run just the first line, I am able to get the correct calculation but I need to get all of the values calculated so I can display them on one table.
Any suggestions?
Here is the syntax I am using if that helps
sum(case when `Delinquent Payment 2` = '30 Days Delinquent' then 1 else 0 end) / count (`Loan ID`)
sum(case when `Delinquent Payment 2` = '60 Days Delinquent' then 1 else 0 end) / count (`Loan ID`)
sum(case when `Delinquent Payment 2` = '90 Days Delinquent' then 1 else 0 end) / count (`Loan ID`)
sum(case when `Delinquent Payment 2` = '120+ Days Delinquent' then 1 else 0 end) / count (`Loan ID`)
sum(case when `Delinquent Payment 2` = 'Bankruptcy 120+' then 1 else 0 end) / count (`Loan ID`)
sum(case when `Delinquent Payment 2` = 'Foreclosures' then 1 else 0 end) / count (`Loan ID`)
sum(case when `Delinquent Payment 2` = 'REO' then 1 else 0 end) / count (`Loan ID`)
sum(case when `Delinquent Payment 2` = 'Current' then 1 else 0 end) / count (`Loan ID`)