Hi -

I'm trying to create a macro that will create a list for hundreds of rows. I created the first portion of the macro, however needing help on how to apply from rows 6-462. Please note each row has specific selection options.
 Range("D5").Select
    With Selection.Validation
        .Delete
        .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
        xlBetween, Formula1:="=$AU$5:$AX$5"
        .IgnoreBlank = True
        .InCellDropdown = True
        .InputTitle = ""
        .ErrorTitle = ""
        .InputMessage = ""
        .ErrorMessage = ""
        .ShowInput = True
        .ShowError = True
    End With
End Sub

As you can see cell D5, needs to have the list options of AU5:AX5. Looking on how to carry this down to D462 with the list option of AU462:AX462. Any help is greatly appreciated.