| Search: | Browse by Category: |
| How can I get a PR Quarterly Liability report by the state? (the standard report on the End Of Quarter PR Tasks list won't work when using a selection criteria) |
The table that is used by the standard liability report does not contain the information by state. Use one of the following queries instead.
SELECT CheckDate AS PayDate, SUM((SSTax+MediTax)*2+FedTax+ TYPEE) as FedTaxLiab, SUM(GrossPay) AS Pay, Sum(FedTax) AS FWT, Sum(StateTax) AS Swt, SUM(SSTax) AS SSTx, Sum(MediTax) AS MedTx, SUM(OtherAddsDeducts) AS Othr, SUM(NetPay) AS NetP,SUM(typeE) AS AEIC,Sum(LocalTaxes) as LocTax INTO JournalByDate From CheckHistory WHERE CheckDate Between BegDate AND EndDAte GROUP BY CheckDate;
Last update: 05:21 PM Wednesday, July 12, 2006 |