Search results

  1. N

    Max Query not working

    So i have created a query and Max on the Record ID - this query stand alone works fine. I have another query that i then bring in the above query but its not giving me the latest record Query1: ID CustomerID Install Date EngineerNo Query2: Customer ID CustomerOrderNo CustomerInstallDate...
  2. N

    Solved Run-time error '3061'. Too few parameters. Expected 1

    yep thats sorted it cheers
  3. N

    Solved Run-time error '3061'. Too few parameters. Expected 1

    I am getting this error when exporting the Query to excel I have changed this: New Order Live: IIf([22].[Serial]=[New_Order]=True,"Yes","No") Results are Yes or No to New Order Live: IIf([22].[Serial]=[New_Order]=True,Yes,No) Results are 0 or -1 Which has now stopped the error, but i...
  4. N

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

    Thank you that did the job :)
  5. N

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

    doesn't seem to work getting syntax error on CDate
  6. 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
  7. N

    Query - Remove old entries

    Yeah i think you are correct will create a query with Max just to show last entry Thanks always :)
  8. 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...
  9. 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
  10. 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
  11. 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!
  12. 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","")
  13. N

    Solved Convert this excel formula to work in query

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

    Solved Convert this excel formula to work in query

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

    Solved Convert this excel formula to work in query

    STILL DOES NOT WORK
  16. N

    Solved Convert this excel formula to work in query

    changed to -1 still doent work
  17. 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
  18. 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
  19. N

    Solved Convert this excel formula to work in query

    No does not work as i said in my first post?
Back
Top Bottom