Search results

  1. bob fitz

    Solved bible database

    Can you post a copy of the db
  2. bob fitz

    Solved Caculate the business day based on date time field

    I don't think my original suggestion gave the desired results when the time was 03:00 am Don't understand why you are making comments on the use of Now() function. I haven't used it:unsure:
  3. bob fitz

    Solved Caculate the business day based on date time field

    I've looked at this again. The following works for me: =IIf(Hour([BusinessDatetime])*60+Minute([BusinessDatetime])<=180,[BusinessDatetime],[BusinessDatetime]+1)
  4. bob fitz

    Solved Caculate the business day based on date time field

    Try: =IIf(Hour([BusinessDatetime])<=3,DateValue([BusinessDatetime])+1,DateValue([BusinessDatetime])) as the Control Source of [businessday]
  5. bob fitz

    my first form

    Can you post a copy of your db
  6. bob fitz

    Just saying HI!

    Welcome to the forum :)
  7. bob fitz

    Hello to all

    Welcome to the forum :)
  8. bob fitz

    Solved How I can reduce the form size?

    Perhaps you need to change from Tabbed Documents to Overlapping Windows. See this short video...
  9. bob fitz

    LEAVE MANAGEMENT

    Well quite!! but if you simply count the number of days in the period of leave, that's what happens;)
  10. bob fitz

    Question about multiple users

    Also, keep in mind that you would need something other than Access for the backend if the network is not a wired network.
  11. bob fitz

    LEAVE MANAGEMENT

    <Phuduhutswana> When entering and calculating leave taken, will your app need to differentiate between the employee's usual working days and those that are not usual working days? i.e. if an employee usually works Mon - Fri (5 days) and goes on leave for one week, will you calculate that as 5...
  12. bob fitz

    HELLO GURUS

    Oh, George. I admire your eloquence.
  13. bob fitz

    HELLO GURUS

    Yes, you can also walk off a kerb at the side of the road and cross it with your eyes closed and your hands over your ears. Just because you can doesn't mean that you should. Read the following link for an explanation of why you shouldn't ;) Evils of Lookups in tables
  14. bob fitz

    HELLO GURUS

    "Store accrued leave days" the number of "Leave Days" taken should not be stored in a table. Calculations should be done as and when needed. I hope these "Lookup" are being used on a form to store the PK and NOT as lookups at the table level. BTW Welcome to the forum :):)
  15. bob fitz

    Percentage Change in Value

    Your welcome. I suspect that it's all about understanding the maths ;)
  16. bob fitz

    Percentage Change in Value

    Perhaps: =([Current_Price]-[Stop_Current])/[stop_current]
  17. bob fitz

    Solved Column in Text Box

    Might be better to use a subform or a listbox.
  18. bob fitz

    Percentage Change in Value

    Indeed. Thank you for the correction.
  19. bob fitz

    Percentage Change in Value

    Perhaps something like: =([Current_Price]-[Net_Share_Cost])/[Net_Share_Cost] as the Record Source of the textbox called Percentage_PC If you are intending to do anything else with this db I would suggest that you Normalize it and get rid of the many "Lookup" fields that you have. Lookups...
  20. bob fitz

    Hello from Scotland

    Welcome to the forum :) It is probably best to start a new thread with whatever is troubling you if you can't find the answer in an earlier thread.
Back
Top Bottom