VBjavaFriend
MIS
I am new to Access so please don't laugh, but I am having problems with a simple invoice form I created. I have it set up as a series of textboxes: Quantity, UnitCost, and TotalCost. Quantity is formatted as a general number, and the other two are formatted as currency. I have it set up where there are 14 "lines" (rows of textboxes) in which to enter quantities (Quantity1, Quantity2, etc) and costs (UnitCost1, TotalCost1, UnitCost2, TotalCost2, etc.) My subtotal textbox has the following as the control Source: =([TotalCost1]) + [TotalCost2] + [TotalCost3.....]) I had to set the default property of all of the costs and quantities to 0 because the subtotal and total remains blank if any of the values to be added are null. I don't want all of the textboxes to have zeros in them. What can I do? (I tried to set it up as a control array in a programming module, but access basic didn't like it. (I am used to straight vb.)) Please help me!