Hi, all,
I have my own editing business. I've tried numerous accounting packages and haven't been thrilled with any of them because I don't have much accounting knowledge and they all seem to be overly complicated. Anyway, I decided to create my own accounting program with Access 2013. I have successfully created client and vendor forms with contact subforms. My problems exist on my sad attempts at creating an order form with a subform that tracks line items from the order. The order form contains the client information along with the order number and the order date. The subform contains all the specific line items for the order.
The first problem I'm having deals with checkboxes. I've checked the forums, but I can't find a solution that fits my needs or I can't understand the answer. I have two checkboxes, one named Rush and one named Taxed. For Rush, I need to count the number of checked checkboxes and multiply the total by 10 to give me the total rush charges. For Taxed, I have this worked with a field called Line Tax. The Line Tax is calculated based on the Line Total and whether or not the Taxed checkbox is checked. No matter how I manipulate the formulas, neither one is working. Rush never tallies and LineTax is always figured whether or not the Taxed is checked.
Right now I have the following...
Rush: =Count(IIF([Rush]=true,1,0))
Taxed: =IIF([Taxed]=true,[LineTotal]*0.06,0)
My other problem stems from trying to get a Subtotal and Total Tax fields to work. =SUM([LineTotal]) and =SUM([LineTax]) give me errors.
What am I doing wrong? I'll admit, most of my problem is that I'm trying to use Excel logic with Access (and I know that doesn't work). But at least I'm trying!