Search results

  1. N

    Solved Copy files from Network to a local folder based on last import

    Ok thanks, i am, going to use the robocopy and run from a bat file as think that's much Easy to do thanks anyways
  2. N

    Solved Copy files from Network to a local folder based on last import

    Hi so i am looking for a way to automate copying file from a network folder to a local folder, using say a table that logs the last file date copied? was thinking FileCopy "some_network_drive\*.txt", "C:\importing\" but this wouldn't copy the last few days but all in folder so guessing i...
  3. N

    Have results show on one line per customer order?

    Hello, So i need to have the query show one line per customer order, the fields i have are as follows Order_Date Order_Number Product_ID results i see is Order_Date Order_Number Product_ID 25/06/2024 592572 RRW01 25/06/2024 592572 RYTA02 i would like to see then...
  4. N

    Solved Mass Importing Txt Files

    Running well now thank you :)
  5. N

    Solved Mass Importing Txt Files

    thanks also had to change With .OpenTextFile(path, 2) to With .OpenTextFile(col(j & ""), 2) running now...
  6. N

    Solved Mass Importing Txt Files

    setup the table as you have suggested and started the job it imported all the files within the first folder and deleted them as planned and it threw up this error... if i now try to start the job again its says..
  7. N

    Solved Mass Importing Txt Files

    Thank you yes that worked, so now for a different question, i also have to import other text files they are in a folder and has then a folder for each day, folders are named as the date like this 2024-01-31 and contain 2-3 files in each folder how's best to get these to import in bulk too ?
  8. N

    Solved Mass Importing Txt Files

    Thanks added that getting another error now on
  9. N

    Solved Mass Importing Txt Files

    Ok thank you for sharing, i am getting a run time error using this code..
  10. N

    Solved Mass Importing Txt Files

    I am looking for a better way to import txt files rather than me having to select the file and then import all the files are within 1 folder
  11. N

    Solved Convert a text string date to dd/mm/yyyy

    Thanks all i got it working using RealDate: DateSerial(Left([T_Date], 4), Mid([T_Date], 5, 2), Right([T_Date], 2)) 20231130 = 30/11/2023 :)
  12. N

    Solved Convert a text string date to dd/mm/yyyy

    Hwllo, so i am trying to confirm a date string and format as date 20231129 would be 29/11/2023 what's the best way to confirm via query
  13. N

    Count the number of rows with a number?

    I am trying to get this working i have a pivot that is showing at the moment three month columns. I want to count the number of rows within the pivot that have data which is a number =COUNTIF(Q10:Q150000, "<>")-1 (i am using the 1- top removed the pivot totals) =COUNTIF(R10:R150000, "<>")-1...
  14. N

    Solved Remove text Prefix from a number

    ok thanks got it working now using AccountRef: Mid([Account_No],5)
  15. N

    Solved Remove text Prefix from a number

    Thanks how would i use this in the query?
  16. N

    Solved Remove text Prefix from a number

    Its always the same and position
  17. N

    Solved Remove text Prefix from a number

    Hi So i need to remove the prefixed number from "ACC/0014471211" to "0014471211" whats the best way to do this with a query?
  18. N

    CountIF

    how do i copy this formula to all rows =COUNTIF(A:A,A112911) if i drag it it changed the row number =COUNTIF(A:A,A112912) =COUNTIF(A:A,A112913) =COUNTIF(A:A,A112914) =COUNTIF(A:A,A112915) and so on..
  19. N

    How do I i create a new table of data with set fields from an imported text file that is just a string of text..

    Thanks all so i have now imported the file and have set the specification imported a test file and looks good so thanks got it sorted now for the formatting :)
Back
Top Bottom