Search results

  1. S

    Append query for recurring invoices

    Can you please give me your email address in a private message? I can email you some material to explain what I am after.
  2. S

    Append query for recurring invoices

    Happy guy I am. Thank you! Do you design databases for small businesses?
  3. S

    Paying someone for access database design

    I run a small business. I started designing a couple of databases some time ago and never finished them. I am still using paper based system and sick of the paperwork. Can someone finish my half done databases for me? I am happy to pay a reasonable fee. I think someone who knows how to write vba...
  4. S

    Append query for recurring invoices

    Used your code and it is working. there was an extra ')' (as you said above) so it wasn't letting me save the query. That is why I had to modify it. Any idea why it creates invoice numbers backwards? for example it takes customer 1, customer 2, customer 3 & gives them invoice numbers 2010...
  5. S

    Append query for recurring invoices

    tblTemp only has two fields. 'InvoiceDate' and 'Description'. I change these two fields each month. (I created tblTemp as I didn't know how to append some unbound text ('Invoice Date' & 'Description') from a form to a table) in the append query. AccountActive and EnableRecurringInvoice are...
  6. S

    Append query for recurring invoices

    here is the append query INSERT INTO tblInvoices ( Customer, BillingAddress1, BillingAddress2, BillingAddress3, InvoiceDate, Description, Terms, PONo, BillingEmail1, BillingEmail2, TotalAmount, GST ) SELECT tblAccounts.CompanyName, tblAccounts.BillingAddress1, tblAccounts.BillingAddress2...
  7. S

    Append query for recurring invoices

    Trying a different solution. I put this expression in the append query & selected to apend it to 'InvoiceNo' field. Expr1: Nz(DMax("[InvoiceNo]","tblInvoices"),"Tables![tblInvoices]![InvoiceNo]")+1 This puts the same invoice number to all 30 invoices.
  8. S

    Append query for recurring invoices

    when I run the query, it adds 30 invoices to the invoices table. where does this code go?
  9. S

    Append query for recurring invoices

    Hi, I am looking to make an invoicing database. I create 30 invoices a month. each client gets billed the same amount each month (for example Customer A gets billed $100 every month, Customer B gets charged $200 each month). Only two things get changed on the invoice-'Description' (for example...
  10. S

    How to create same monthly invoices automatically

    Thank you Pat. Trying to do it now.
  11. S

    How to create same monthly invoices automatically

    Yes the tax is fixed 10%. The description is the same for each month e.g."I.T. services for January 2012" But I do need to store the total & tax amount so I can later modify the invoices later for tax free items. How do I do the following? Do you have any example that I can look up & try to do...
  12. S

    How to create same monthly invoices automatically

    Hi, I am making an invoicing database, So far I have the following tables & fields. tblInvoices invoice no (autonumber,primary key) invoice date (date) Description (memo) amount (currency) tax (calculated field) total (calculated field) customerID (foreign key) tblJobs Job Id amount customer...
  13. S

    Pass on "Asset ID" to Maintenance form

    Problems Solved. Thank you thank you Thank you!
  14. S

    Pass on "Asset ID" to Maintenance form

    Thanks John That solves my one problem. How do i go about creating a new record and keep the same "ASSETID" ? e.g. when i click on "Maintenance" button on Assets form, it opens the maintenance form & shows only the maintenance records related to that particular asset that is open in assets...
  15. S

    Pass on "Asset ID" to Maintenance form

    Hi All, I have an asset db. (it is attached) - - Access 2003 File It has two forms 1) Assets 2) Maintenance I want to have a button on Asset Form which opens Maintenance form (i can do this myself) but how do i pass on "AssetID" to maintenance so i don't have to type it into Maintenance form...
  16. S

    Need EXPERT advice on Lookups

    Thank you Paul. The link is great. JOHN WHITE has explaied this very well in another forum. I would like to share it here as many people can benefit from it. ========================================================= Your tables should contain raw data without any lookups defined in the Table...
  17. S

    Need EXPERT advice on Lookups

    I have designed 2 databases. in both of them i had lookups (e.g to select Company name from combo box drop down) The thing is, in actual table it only saves reference number to the lookup NOT THE ACTUAL VALUE. (e.g. if i select Microsoft which is under Company combo box drop down, it saves...
  18. S

    Filtering Data on forms using combo boxes

    Hi David, This database has attachment fields (data type) so i can not save it as mdb. But i will keep that in mind for future posts. Thanks!
  19. S

    Filtering Data on forms using combo boxes

    I have 4 tables in my Asset manager database. 1) Desktop PCs 2) Monitors 3) Locations 4) Company the tables LOCATIONS & COMPANY are lookup tables for DESKTOP PCS & MONIOTORS TABLES. - see image and database attached Pls Note: I still need to make heaps of changes in the db. IS THERE ANYWAY I...
  20. S

    Macro Problem on form: The object doesn't contain the Aumation Object Id

    I am sorry. I knew i needed to add something, just couldn't remember it. Now i know. I AM USING ACCESS 2007.
Top Bottom