Search results

  1. F

    Solved Export Table to txt-File with semicolon spezification in VBA

    Hi, i would like export one table in access to txt-File but with the semicolon spezification. How can I do this? Currently I do the following code: DoCmd.OutputTo acOutputTable, "table1", acFormatTXT, "table1.txt" But the output shows similar as a table with horizontale and vertical lines...
  2. F

    Solved Remove Duplicates in access with Queries

    Hello, i want to remove duplicates from the main table. I found a mini queries sql code in the internet, but they show me the count of the Duplicates. How can I remove the duplicates and keep only the entry on the top(FirstID). SELECT First(Tabelle1.Duplikate) AS [Duplikate Feld]...
Top Bottom