Search results

  1. N

    Hide a field if the title (date) is 10 days old?

    so yes as its overtime hours available for future 10 days post today, dont want to show anything before 10 days, dont think its possible anyways
  2. N

    Hide a field if the title (date) is 10 days old?

    So i am wondering if you can hide a field in a form if the title which is a date if its not 10 days from today field title = a date in the future with a count of available hours like 10/03/2022 14.5 11/03/2022 22.5 so i now need to hide 10/03/2022? as its 11 days from now?
  3. N

    Solved Check If Date is a Bank Holiday

    thanks i had already setup a table and it all works fine :) "I have all then dates in a table called "BankHolidays""
  4. N

    Solved Check If Date is a Bank Holiday

    thanks this all worked and i have tested :)
  5. N

    Solved Check If Date is a Bank Holiday

    So i have this code that creates a date 12 working days from today, but i now need for it to check if the date its offering as a Bank Holiday and if so move to the next weking day. Public Function addDays(ByVal iDays As Integer, ByVal dteStart As Date) As Date Dim i As Integer Dim m As Integer...
  6. N

    Solved Query Show records before a date on a form

    Thanks changing this to < [Forms]![Requests].[Date] worked
  7. N

    Solved Query Show records before a date on a form

    So i need to have a query being back all records added before a date on a form. Tried this but didnt work <[Requests].[Date] get a prompt
  8. N

    Solved Add Prix to field

    So i need to add this to any numbers that are only 5 string long CorrectNumber:"2000" & [InvoiceNo] but i only want to correct if the current number is less than 6 ? how would i go about this please
  9. N

    Solved Form - Data Entered Must Be Greater than 10 characters

    did the job thanks :)
  10. N

    Solved Form - Data Entered Must Be Greater than 10 characters

    Is it possible to have on a form something that will prompt the user entering if the number of characters within a field is less than 10, is so then pop a message to say
  11. N

    Solved Query to Trim

    this did the job Left([ACTION],2)
  12. N

    Solved Query to Trim

    Hi, I need to trim all expect the numbers 03: SET ACTION 04: SET CALL BACK 05: CLOSE just need 03 04 05 any ideas please
  13. N

    Check if the Results of two fields match?

    what's the best way to say if two fields in query match [ID]=[SID],Yes,No ?
  14. 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...
  15. N

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

    yep thats sorted it cheers
  16. 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...
  17. N

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

    Thank you that did the job :)
  18. N

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

    doesn't seem to work getting syntax error on CDate
Back
Top Bottom