Excel vba loop through list until

Andyztes

New Member
Joined
Nov 7, 2017
Messages
5
Hello,
I am trying to work on a way to automatically fill in a schedule for where someone should be. What I have so far is in my 1st sheet I have a table of cells I want to fill, across the columns i have dates, and down the rows I have the locations. In my 2nd sheet I have the dates of when people are working going out three weeks. In my 3rd I have a list of names for the various locations in order of priority, I also have these as named ranges. What I would like to do is in the first blank cell of the table "B3" use the corresponding named range and use the first name in the list and check if it is in the other list(2nd sheet) for that date. If a name matches put that name in that cell and end loop, if not go to the next name until a name is used. while finding a name if also should check the other locations making sure that name isn't somewhere else if so then move to next name.

I don't know if this is possible I assume it is since excel can do it all, but I'm not sure on how to go about doing it. I think it might have to be in a do until loop or a for loop or a combination of the two. any sort of lead would be greatly appreciated thanks in advance.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
This is what i got so far its not working of course but maybe on the right track?

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim N As Range
Dim xlCell As Range
Dim sh1 As Worksheet
Dim sh1r As Range
Dim sh2 As Worksheet
Dim sh2r As Range

Set sh1 = ActiveWorkbook.Worksheets("Sheet2")
Set sh1r = sh1.Range("B4:B39")
Set sh2 = ActiveWorkbook.Worksheets("Sheet1")
Set sh2r = sh2.Range("B3")

Do While Worksheets("Sheet1").Range("B3") Is Nothing
For Each N In Range("Controls")
For Each xlCell In sh1r
If xlCell.Value = N Then
sh2r = N
End If
Next xlCell
Next N
Loop
End Sub
 
Upvote 0
this is currently where im at, it seems to sort of works, it doesn't seem to take the first name in my named range and check if its in the range in sheet 2. it seems to just find a match and display in the given cell. (Skipping the first two people)
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim N As Range
Dim xlCell As Range
Dim sh1 As Worksheet
Dim sh1r As Range
Dim sh2 As Worksheet
Dim sh2r As Range
Dim val
Dim ws As Worksheet

Set ws = Worksheets("Sheet3")
Set sh1 = ActiveWorkbook.Worksheets("Sheet2")
Set sh1r = sh1.Range("B4:B39")
Set sh2 = ActiveWorkbook.Worksheets("Sheet1")
Set sh2r = sh2.Range("B8")

Do While sh2r = ""
For Each N In ws.Range("Controls")
val = N
For Each xlCell In sh1r
If xlCell.Value = val Then
sh2r = val
End If
Next xlCell
Next N
Loop

End Sub
 
Upvote 0
I think you might have a better chance of getting a reply if you post (coordinated) samples of your three worksheets so we can see how they are laid out and how the data on worksheets 2 and 3 end up looking on the first worksheet. You can use DropBox to post your samples.
 
Upvote 0
PM Schedule
10/30/17
10/31/17
11/1/17
Controls
JANE
BRUNILDA
JANE
Dosis
TERESA
TERESA
KIM E
Fridge
GERISE
KIM
GERISE

<tbody>
</tbody>
10/30/17
10/31/17
10/1/17
JANE
KIM E
JANE
GERISE
KIM
KIM E
TERESA
BRUNILDA
GERISE
ROBIN
TERESA
LISA

<tbody>
</tbody>
Contols
Dosis
Fridge
JANE
TERESA
DANIELLE
ROBIN
JOSEPH
GERISE
GERISE
KIM E
KIM
BRUNILDA
KIM
LISA

<tbody>
</tbody>

This is basically the layout I have, the first table is where I want to fill in the names. the second table is the dates people are people are working. The third table is where I have my named ranges. What I would like to do is take the first name in "Controls" and see if they are working on that date, if they are fill in the name, if not then move to the next name. I would also like it to check if the name was used already for that date. I filled the first table in with how the names should fill in.
 
Upvote 0
Currently my code, seems to sort of work it doesn't seem to take the first name in the named range and test it, almost seems like it see if a name is in both and uses that. Also it doesn't check the names in the other locations of that date to see if they are already used.
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim N As Range
    Dim xlCell As Range
    Dim sh1 As Worksheet
    Dim sh1r As Range
    Dim sh2 As Worksheet
    Dim sh2r As Range
    Dim ws As Worksheet
    Dim D As Range
    
    Set ws = Worksheets("Sheet3")
    Set sh2 = ActiveWorkbook.Worksheets("Sheet1")
    Set sh1 = ActiveWorkbook.Worksheets("Sheet2")
    
    Do While sh2.Range("B8") = ""
        
        Set sh1r = sh1.Range("B4:B39")
        Set sh2r = sh2.Range("B8")
        For Each xlCell In sh1r
            For Each N In ws.Range("Controls")
                If xlCell.Value = N Then
                    sh2r = N
                End If
            Next N
        Next xlCell
    Loop
 
Upvote 0

Forum statistics

Threads
1,216,146
Messages
6,129,142
Members
449,488
Latest member
qh017

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top