Search results

  1. N

    Solved Mass Importing Txt Files

    Thanks added that getting another error now on
  2. N

    Solved Mass Importing Txt Files

    Ok thank you for sharing, i am getting a run time error using this code..
  3. 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
  4. 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 :)
  5. 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
  6. 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...
  7. N

    Solved Remove text Prefix from a number

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

    Solved Remove text Prefix from a number

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

    Solved Remove text Prefix from a number

    Its always the same and position
  10. 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?
  11. 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..
  12. 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 :)
  13. 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 for your reply, the data doesn't have any field headers its just a string like shown above so all in one field table labelled Data
  14. 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..

    So i need to break up a report that is provided in a continued string of data.. A1215455545444444842121212121212121TTTRTR2TR2TY2212121212212122121 The data will need to be broken out as following.. Record type String 1 Always "A" Supplier ID Numeric 5 XXX01 where XXX is the 3-digit...
  15. N

    Solved Get the latest date from 3 fields

    Ok thanks got that all working now using that suggested link method Happy days!
  16. N

    Solved Get the latest date from 3 fields

    So i now need to have some code to get the latest date from three possible fields Field names are Phone Email Text, this is what i am looking for as the outcome Phone Email Text Latest Contact 12/05/2023 21/10/2023 21/10/2023 01/11/2023 31/10/2023 01/11/2023
  17. N

    Solved Query date or is null not working

    Thank you that did the job :)
  18. N

    Solved Query date or is null not working

    So i am trying to bring back in a query the results of all call made after another date field or is null, but its only bring back null records, even though we do have calls with dates i am using "Contact_Date" >=[Start_Date] Or is null
  19. N

    Solved How do I add a zero to a number within a databricks Table using SQL

    Got it working the correct code is: UPDATE Test table name SET IID = CONCAT('0', IID); :)
Back
Top Bottom