Consulting

Results 1 to 2 of 2

Thread: vba for when data is changed to remove item from data validation list in another wksh

  1. #1

    vba for when data is changed to remove item from data validation list in another wksh

    I'm trying to complete a code so that when data ("no") is entered in Columns "B" "C" "D" "E" "F" "G" "H" in worksheet "Time Schedule" the code will remove a specific data from the data validation list I have in worksheet "Assign Tracking". Basically what will happen is that if an employee doesn't show up for work, I want the sheet "Assign Tracking" to remove that employee's name from the data validation list I have set for sheet "Assign Tracking"
    I'm limited in my vba skills and only just started writing this code:

    With Target
    If .count = 1 Then
    If .Row > 1 And .Column = 2 Then
    If .Value = "No" Then
    Worksheets("Assigning Tracking").Activate
    Attached Files Attached Files

  2. #2
    Moderator VBAX Sage SamT's Avatar
    Joined
    Oct 2006
    Location
    Near Columbia
    Posts
    7,814
    Location
    Check your other threads please.
    I expect the student to do their homework and find all the errrors I leeve in.


    Please take the time to read the Forum FAQ

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •