I\'m writing a T-SQL report that shows the number of accounts that are in different statuses for different customers. The report results in something like:
C
SELECT sr.sales_region_name AS SalesRegion , ISNULL(micv.value,'Pending') , COUNT(sr.sales_region_name) FROM prospect p --(...)
Go check ISNULL for further info.