Search results

  1. G

    Find Unmatched records using AND criteria

    Sorted and thanks for asking.:)
  2. G

    Find Unmatched records using AND criteria

    tblImport is created from a text file import and holds superfluous transactions that need to be weeded out - the balance of the transactions are appended to the tblAccountTransactions. Thanks for the pointer re memo fields. Fortunately it isn't.
  3. G

    Find Unmatched records using AND criteria

    Yes have used the unmatched query wizard without success. My mistake, the field Date is really TransactionDate. This is asking me for Parameter values for tblAccountTransactions.Description and tblAccountTransactions.Amount.
  4. G

    Find Unmatched records using AND criteria

    I would like to find all records in tblImport that does not have matching records in tblAccountTransactions. In both tables I have Amount, Date and Description. I need to use an AND statement in the criteria. That is, using all 3 fields (Amount AND Date AND Description) from tblImport find non...
  5. G

    Highlighting the contents of a textbox on entry.

    I tried to implement this on a text box that is formatted for Currency but the code only selects the numbers to the left of the decimal point. Can anyone please advise the fix? thanks gavin
  6. G

    Formula returning #Error

    I have a form containing a subform. The subform contains checkboxes and corresponding amounts and bank account numbers. In the footer section of the subform is a DSUM formula saying add up all amounts of a particular account whose checkbox is true :=DSum("[Amount]","tblImport","[Import]=True...
  7. G

    Simple query not working

    Fixed it - I was missing the rabbit ears.
  8. G

    Simple query not working

    I have a table called tblAccountTransactions. In this table are the fields BankedAmnt and AccntNo. In the query grid window in the first column is AccntNo. In the second column is the formula total: DSum(BankedAmount,[tblAccountTransactions]). However when I run the query it is asking for a...
  9. G

    Object Invalid or no longer set

    I am running this code but am receiving the error in the subject; Private Sub cmdUpdate_Click() Dim dbsCur As Database Set dbsCur = OpenDatabase("C:\Users\Gavin\Front End\MyFile.accdb") Dim tdf As TableDef Set tdf = CurrentDb.TableDefs("tblCSVData") If Len(tdf.Connect) > 0 Then...
  10. G

    updating linked table

    tblCSVData is a table of MyDB.accdb
  11. G

    updating linked table

    So I did as you suggested but still receive the same outcome Here is the code;
  12. G

    updating linked table

    If I comment out Dim dbsCur As Database Set dbsCur = OpenDatabase("MyDB.accdb") I am now getting the error I reported on post #8
  13. G

    updating linked table

    I have got this code to work before but now I can't, giving me a runtime error 3024, Could not find MyDB.accdb Here is the code; Private Sub cmdUpdate_Click() Dim dbsCur As Database Set dbsCur = OpenDatabase("MyDB.accdb") Dim tdf As TableDef Set tdf = CurrentDb.TableDefs("tblCSVData")...
  14. G

    updating linked table

    Thanks Gasman, I cannot specify the name of the file unless I change it after the download. The bank does not allow any interaction other than request the download. I have eliminated the manual refreshing of the linked table (point 3 and 6).
  15. G

    updating linked table

    Thanks everyone, unfortunately I am limited by the nature of the external source therefore can only process one file at a time, initiated by a manual process. But that doesn't mean I can't make it more efficient, which I have as a result of this thread. thanks again
  16. G

    updating linked table

    Thanks Pat, in fact one of your earlier posts set me on my current path.
  17. G

    updating linked table

    Well what do you know. Once I reopened the db it worked. thanks for your help
  18. G

    updating linked table

    Yes, replaced table1 with my name. Yes it compiles. The enabled references are Visual Basic, Object Library, OLE Automation and the database engine object library.
  19. G

    updating linked table

    The line If Len(tdf.Connect)>0 Then is throwing a "object invalid no longer set" error. How should I fix this?
  20. G

    updating linked table

    With each iteration a different run time parameter is specified... I can only create a csv for one account at a time, and I have multiple accounts.
Back
Top Bottom