Search results

  1. T

    Dropdown to select employee

    OK Sparks80 - I was totally wrong! This works!! Thank you SOOO MUCH!!!
  2. T

    Dropdown to select employee

    Sparks80 - YOU ROCK! The problem is I want the EmpID Field in both the Employees Extended form and the Hours subform to match the employee that is selected in the Employee Name field you changed my code on. Does this make any sense? For instance, if Mickey Mouse is selected, the EmpID would be...
  3. T

    Dropdown to select employee

    Yes- I have been getting that error too. Just accept it and open the Employee Extended form. Click the dropdown for Employee Name to select a different employee. Notice when the information changes - the information in the fields around it do not. Most specifically the EmpID field.
  4. T

    Dropdown to select employee

    I want the rest of the record to update when I select different employees. The change should happen in both the main AND the sub form. I have saved this as an mdb.
  5. T

    Dropdown to select employee

    The code I have above works to select the employee name. It doesn't change the record that has been selected for either the main or sub forms. It the space in my field name stopping this from working properly? Thanks.
  6. T

    Dropdown to select employee

    Good morning. I have a dropdown that I want employees to use to select their name to add time. The following is what I have: Private Sub Combo18_AfterUpdate() Dim rs As DAO.Recordset Set rs = Me.RecordsetClone rs.FindFirst "[Employe Name] = '" & Me.cboName & "'"...
  7. T

    Find Employee

    This is great! Thank you! So can we set the match on the name instead of the EmpID? I think it will be harder with my idea. Yours is better. Thanks again!!!!
  8. T

    Find Employee

    I have been working with it in 2007. I downloaded the template from the Microsoft website. Can't you open it? I don't have 2010 either! :(
  9. T

    Find Employee

    Alright - here you go. Thanks again!!!
  10. T

    Find Employee

    I don't think I have been clear. I want to apply a filter based on the employee I select (hopefully a drop down). I will also need to filter based on the PeriodEnding so that only the current period end date shows for the hours that are being entered. Will the code sparks80 do this? Thank you!!!
  11. T

    Find Employee

    The main form is called Employees Extended and the subform is called Hours. The main form has the following fields: EmpID Employee Name (This is a combination between the First and Last Name fields in the employee table) this is what I would like to have a dropdown on to select the employee...
  12. T

    Find Employee

    Good afternoon. I would like to create a dropdown to select an employee. When I do this (I have a main form and a subform), it won't change the data in either the main form or the subform. Granted, I am most definitely doing this wrong. (Obviously! Or I wouldn't be here right?) The subform and...
  13. T

    Calculation based on week and pay period

    That's perfect! Thank you!!!:)
  14. T

    Calculation based on week and pay period

    Ok This is what I have for the Pay Period ending. They are different as we are paid bi-monthly. I have gotten several errors though. I don't do well (AT ALL) writing code so your help is immensely appreciated! PeriodEnding: DateDiff("m",[DateWorked],*2 + IIf(Day([DateWorked]) > 15, -1, 0) +...
  15. T

    Calculation based on week and pay period

    This is extremely cool!
  16. T

    Calculation based on week and pay period

    So Access will understand that, for instance, this week will end on 4/22? Can you provide an example of the code I will use (if any)? Thanks!!:)
  17. T

    Calculation based on week and pay period

    Hello. I am using Access 2007. I am creating a time tracking database and I want to create a calculation based on when the week ends. It should give the total number of hours worked within a week and refresh as records are entered. Our week starts on Monday and ends on Sunday. Well this is how I...
Back
Top Bottom