Search results

  1. J

    Check Two Time Values

    Hello Guys, I have two Fields in my Table Review Start Time and Review End Time and the Data type is Date/Time. These are the values in these Fields: When a user enter a Time between 8:15 AM and 4:20 PM in the Form, I want to find the count of these Records. For Example if a user Enter 8:16...
  2. J

    Tracking Duplicate File Review Time

    Thanks so much
  3. J

    Solved Limit the Decimals to 2 Digits

    I think I fixed this. I use this code Text34.Value = Nz(DateDiff("n", [Review Start Time], [Review End Time]) / 60, 0) Text34.Value = Round(Text34.Value, 2) Thank You
  4. J

    Solved Limit the Decimals to 2 Digits

    Hello Guys, I want to find the Total Review Time. This is my Code Text34.Value = Nz(DateDiff("n", [Review Start Time], [Review End Time]) / 60, 0) This is working Perfect. But when I change Times like: Total Review Time is showing Decimals like this. These are the Properties of my Text...
  5. J

    Tracking Duplicate File Review Time

    Thanks a lot
  6. J

    Tracking Duplicate File Review Time

    Thanks a lot for your Help.
  7. J

    Tracking Duplicate File Review Time

    Please find the Attachment This is Datasheet view of my Table:
  8. J

    Tracking Duplicate File Review Time

    Yes. Exactly
  9. J

    Tracking Duplicate File Review Time

    Hi, I have created a separate Table and Form for storing Review Hours. So 1 File will be Reviewing by three levels by Admin Asst, Business Analyst and Manager. I want to prevent Duplicate Data Entry. By Duplicate I mean, a File should not be Reviewed by Admin Asst. for the Same Day and Time...
  10. J

    Tracking Duplicate File Review Time

    Hello Guys, I am trying to Track Reviewed Hours of Files by various Departments. There are 3 Levels of Reviewing, 1) Admin Assistant 2) Business Analyst and 3) Manager. I want to eliminate Duplicate Entry. For Example an Admin Asst Reviewed a File on 31-May-2021 from 8:15 AM to 4:30 PM. Again...
  11. J

    Exit Sub if Value is Null

    It worked Perfect. Thanks a lot
  12. J

    Exit Sub if Value is Null

    Hello Guys, This is my Code Private Sub strName_GotFocus() Dim db As Database Dim rst As Recordset Dim STRSQL As String Set db = CurrentDb() STRSQL = "Select [tblMaster Table].[strID], [tblMaster Table].[strName],[tblMaster Table].[strKeywords],[tblMaster Table].[datMeeting Date],[tblMaster...
  13. J

    SetFocus Is Not Working

    Thank You. I have put my Code in the Got Focus event of strName and it is working,
  14. J

    SetFocus Is Not Working

    I have put my Code in the Got Focus event of strName and it is working. Though I am not sure this is the correct way to solve this Thank You
  15. J

    SetFocus Is Not Working

    Yes I am able to Edit Thanks
  16. J

    SetFocus Is Not Working

    It is Enabled and this is Not an Auto Number Thanks
  17. J

    SetFocus Is Not Working

    Hello Guys, This is my Code Private Sub strPHN_LostFocus() Dim db As Database Dim rst As Recordset Dim STRSQL As String Set db = CurrentDb() STRSQL = "Select [tblMaster Table].[strID], [tblMaster Table].[strName],[tblMaster Table].[strKeywords],[tblMaster Table].[datMeeting Date],[tblMaster...
  18. J

    Message Box When there is a Duplicate Value while Transferring Data Using Transfer Spreadsheet Method

    Hello Guys, I am transferring data from Excel spreadsheet to Access Table by using Transfer Spreadsheet method. Is there any way to Display a Warning Message Box if there is any Duplicate values in the Access Table? For Example, I have an Employee ID Field and the Value of this Field is 100...
  19. J

    Run Time Error 70 Permission Denied

    Sorry. My colleague doesn't have access to the Folder where the Database is Backing Up. My apologies, that was a very stupid Question I asked.
Back
Top Bottom