To recreate: 1 - Browse to Reports->Catalog 2 - Set columns = homelibrary = Centerville 3 - Set row = Collection 4 - Set Cell Value to Count total items 5 - Set Output to To the screen 6 - Run, note columsn match 7 - Change some values in the DB: UPDATE items SET ccode="" WHERE ccode='REF' and barcode LIKE '%35'; 8 - Run report again, off by one 9 - Edit the code in the script and set: our $debug=1 10 - Copy the code from the logs and add the library, or run the command below where I did that already: SELECT items.ccode, items.homebranch, COUNT(*) FROM items LEFT JOIN biblioitems ON (items.biblioitemnumber = biblioitems.biblioitemnumber) LEFT JOIN biblio ON (biblioitems.biblionumber = biblio.biblionumber) WHERE 1 AND items.homebranch LIKE 'CPL' group by items.ccode, items.homebranch order by items.ccode,items.homebranch; 11 - Note the row with no value and total 5 - it is missing on the report in the interface, instead NULL has been shown twice - the value overwritten and causing a mismatch in totals