VBA Code - Changing Data Validation List source and apply to a column in another table

Jack_881

New Member
Joined
Sep 11, 2020
Messages
16
Office Version
  1. 2019
Platform
  1. Windows
Hi All

I have the code below which is meant to perform the following:

  1. Use a table in a worksheet to get a list of technician names to use as a data validtation list in another table on different worksheet
  2. Remove existing validation in the target table and replace with the new data validation list
  3. This new validation list to apply in all cells in a specified column of the target table
The issue I have is the new validation list is only being applied to the first row in the column and each subsequent row, a name from the top of the list drops off, so on an so on. Hoping someone can point out the error in my code.


Sub SetDataValidation()
Dim wsData As Worksheet
Dim wsList As Worksheet
Dim lo As ListObject
Dim rngList As Range
Dim tblData As ListObject


'Set references to the worksheets and list object
Set wsData = Worksheets("Orders")
Set wsList = Worksheets("Technicians")
Set lo = wsList.ListObjects("tblTechs")
Set tblData = wsData.ListObjects("tblData")

'Set range to the column in the list object
Set rngList = lo.ListColumns(1).DataBodyRange


'Set data validation source to the range in the other worksheet
With tblData.ListColumns(10).DataBodyRange.Validation
.Delete 'Clear existing validation first if needed
.Add Type:=xlValidateList, _
AlertStyle:=xlValidAlertStop, _
Operator:=xlBetween, Formula1:="='" & wsList.Name & "'!" & rngList.Address(False, False)

.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True

End With

End Sub
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Try
VBA Code:
Operator:=xlBetween, Formula1:="='" & wsList.Name & "'!" & rngList.Address
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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