|
Reports |
Top Previous Next |
|
You can produce reports for tax purposes, and have the report made into an Adobe Acrobat pdf file, which can be e-mailed to your accountant. First, run a query to create a temporary table of the taxable items for the calendar year. Copy this table to another directory to save it. Open Tables | Reports. Insert the headers, by File|Header. Then view the report File|Report. From here you can print it, or save it to a pdf file.
A sample query is
select * from checks where extract(year from dates) = 2000 and tax_ded = True and account <> 'cor' and currency = '$' order by budget,dates
|