The below query, while not pretty, will give you the number of interfaces that are admindown, total interfaces and percent that are admindown. You should be able to plug this in to an Advanced SQL report
select (select count(*) from interfaces where adminstatus = 0) as [Count], count(*) as [Total], (select count(*) from interfaces where adminstatus = 0)*100/count(*) as [Percent] from interfaces