Hey everyone!! I need a little help with something. I use the query below to pull results from a table to let me know how many records I have from each collectorid to build. The problem is that the field we use for collectorid doesn't match the field I use to build with. I need to add a row to the results with some sort of code that will give a result based on the collectorid returned. For example, if the collectorid is INA, I want the new row to show INAC. PAL needs to show PALA and so forth. Any help?select tr.collectorid, count(*) from C3CivilAutomation.dbo.vw_TransactionReceipts as tr (nolock) where tr.exportdate = '1900-01-01' and tr.collectorid in ('INA','PAL','PMC','AZP','OHF','PAB','IMW','MIW','WCA','OTC','TXT','AZM','MIL','MIF','MIJ','MIK','MIM','MIN','OH2','MIS','MIH','OH6','OH1','HCF','AKC','MIE') and tr.DocketSession <> 'Migrated from 05' and tr.Caseheld = '0' group by tr.collectorid order by tr.collectorid compute sum(count(*))OPTION (MAXDOP 1)