Recent content by sathsaj

  1. S

    Solved Import .CSV VBA Run time Error 3011

    I discarded my code and copy pasted the one from the solution
  2. S

    No of Files Count

    Dim count As Integer StrFile = Dir("C:\Testing\TEST*.csv") Debug.Print "File name is :" & StrFile Debug.Print Len(StrFile) Path = "C:\Testing\" Debug.Print Dir(Path) count = 0 Do While StrFile <> "" count = count + 1 StrFile =...
  3. S

    Solved Import .CSV VBA Run time Error 3011

    Solved - Why do I get Run-time error 3011? | Access World Forums (access-programmers.co.uk) I copied one of the code from this
  4. S

    Solved Import .CSV VBA Run time Error 3011

    Dim strFound As String Dim strSearch As String strSearch = "C:\Users\SRS\test\STest*.csv" strFound = Dir(strSearch) DoCmd.TransferText acImportDelim, "TableSpecs", "Current Day File", strFound, True Beep MsgBox "Files Imported", vbOKOnly, "" what is wrong with this code, first time it...
  5. S

    Solved Business Days VBA

    ? Format(Date - IIf(Weekday(Date)=2,3,IIf(Weekday(Date)=1,2,1)), "ddMM") & ".xls" - this one worked now, I had some wrong code
  6. S

    Solved Business Days VBA

    nothing worked, it still gives me 2101
  7. S

    Solved Business Days VBA

    Dim outputFileName As String outputFileName = CurrentProject.Path & "\Constituents " & Format(Date - 1, "ddMM") & ".xls" DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, "Test", outputFileName, True Above code give me 2101, how can I change this code to get 1901 which Businessdays-1
  8. S

    Saved Export Names not visible under RunSavedImportExport

    I saved several export steps which is visible under New Tab, now I come to Macro and use RunSavedImportExport and only some of they show up under the drop down and not not all, do you know how to fix this issue ?
  9. S

    Concatenate in Access

    am not from IT background, so unable to get the results :-(
  10. S

    Concatenate in Access

    HI Is there a solution in Access for the below data Name Oliver Markus Required Result in the next Column = Oliver;Markus
  11. S

    Access looks for Confirmation

    that works :):):):):)
  12. S

    Access looks for Confirmation

    I have a macro which is provided by access
  13. S

    Access looks for Confirmation

    unfortunately Iam not familiar with VBA
  14. S

    Access looks for Confirmation

    Hi All, Access looks for confirmation to delete existing data before a query is run. This is a Maketable Query. the Action Queries under Client Setting is unchecked. But still why do we get this message ? Is there a way were can get this away ?
  15. S

    Combine Saved Exports

    Cool, I have used Macro before, but I never noticed this Show All Actions button. It worked and am Glad I could close this out. Thanks Gasman for the Help :)
Top Bottom