Search results

  1. N

    Solved How to format Date to UK dd-mm-yyyy

    doesn't seem to work getting syntax error on CDate
  2. N

    Solved How to format Date to UK dd-mm-yyyy

    Hello, I need to change the formatting of this strange date layout to standard uk date 2021-11-24T01:00:00.000Z 2021-12-13T11:18:10.684Z
  3. N

    Query - Remove old entries

    Yeah i think you are correct will create a query with Max just to show last entry Thanks always :)
  4. N

    Query - Remove old entries

    So we have a table that gets updated every day with the last events. like a log on the processing of any order The field that gets updated is called [Order_Status] and the date gets updated within the [ImportingDate] - what i need to do is once completed delete (or archive) all earlier records...
  5. N

    Solved Form - Best way to prompt users that they must complete a form field

    sorted it using this... Dim strSQL As String Dim ctl As Variant If IsNull(Me.TelephoneNo) Then Dialog.Box "Please enter a Customer Telephone Number!", vbCritical, "Data entry error..." Me.TelephoneNo.BorderColor = vbRed Me.TelephoneNo.SetFocus Exit Sub Else
  6. N

    Solved Form - Best way to prompt users that they must complete a form field

    Thanks no we always have a telephone number so how would i get this setup
  7. N

    Solved Form - Best way to prompt users that they must complete a form field

    Love to hear about the best way to prompt the user when they leave a field black Message - Please Complete Customers Telephone Number! - This cant be leave blank!
  8. N

    Solved Convert this excel formula to work in query

    thanks this worked i had to rebuild the database and its all working now thanks so much for all your help =IIF([BOOKED]="yes" OR [DELIVERED]="yes" OR [OUTSTANDING]="yes","Yes","")
  9. N

    Solved Convert this excel formula to work in query

    Ill export it into excel and use my original formula thanks anyway
  10. N

    Solved Convert this excel formula to work in query

    yeah i have =IIF([BOOKED]="yes" OR [DELIVERED]="yes" OR [OUTSTANDING]="yes","Yes","")
  11. N

    Solved Convert this excel formula to work in query

    STILL DOES NOT WORK
  12. N

    Solved Convert this excel formula to work in query

    changed to -1 still doent work
  13. N

    Solved Convert this excel formula to work in query

    no its not working see... yes for those with a yes i can also seeing the same when all 3 are the no BOOKED DELIVERED OUTSTANDING Expr1 No No No -1
  14. N

    Solved Convert this excel formula to work in query

    yes for those with a yes i can also seeing the same when all 3 are the no BOOKED DELIVERED OUTSTANDING Expr1 No No No -1
  15. N

    Solved Convert this excel formula to work in query

    No does not work as i said in my first post?
  16. N

    Solved Convert this excel formula to work in query

    No this does not work Test BOOKED DELIVERED OUTSTANDING Results No No Yes -1 No Yes No -1 same result even when a yes is present :)
  17. N

    check for added contact tel

    so the form has a combo field that users can select 5 differnt templates all they need to do is add after -Contact Tel the customers details i want some to prompt if nothing has been added ?
  18. N

    Query to find any records that has a space

    how would i add this to the form please after update?
  19. N

    check for added contact tel

    so i am looking for a way to check if the user has added the tel to a template they can select as ending xxxxxx -Contact Tel- if nothing added after this say a message?
  20. N

    Query to find any records that has a space

    So i need to build a query to show any records within the field called MTest that begins with a space (data enter error) I have this to fix it UPDATE DataRequests SET DataRequests.MTest = Trim([MTest]); but this runs on the complete table and is now slow, so need to set the criteria just to...
Back
Top Bottom