jayakum108
New Member
In "enterSourceType" cell, user will either say "Plant" or "Toller".
In next cell (enterPlant), user is provided a list of plants or tollers. So that cell has the validation source formula:
=IF(mySourceType = "Plant", allPlants, allTollers)
This works well.
Now I when user changes the enterSourceType selection, I also want the enterPlant entry, if not already an item in the appropriate list, to change to the first item in the appropriate list.
While I can do that in the Worsheet_Change function with VBA, I have a lot of cells like this that have their dropdown lists changing dynamically. So I want to write a Sub:
Sub ValidateAndResetCellEntry (cellname as Range)
' If cell value is not one of the items in the validation list, set it equal to
' the first item in the validation list.
End Sub
Another reason for a Sub is that I need to "access" the actual list of options in the cell because some of the validation formulas are long with many conditions and I don't want to duplicate that logic in VBA.
I looked around the web a lot and did not succeed.
Any help will be appreciated.
Thanks,
Jay
In next cell (enterPlant), user is provided a list of plants or tollers. So that cell has the validation source formula:
=IF(mySourceType = "Plant", allPlants, allTollers)
This works well.
Now I when user changes the enterSourceType selection, I also want the enterPlant entry, if not already an item in the appropriate list, to change to the first item in the appropriate list.
While I can do that in the Worsheet_Change function with VBA, I have a lot of cells like this that have their dropdown lists changing dynamically. So I want to write a Sub:
Sub ValidateAndResetCellEntry (cellname as Range)
' If cell value is not one of the items in the validation list, set it equal to
' the first item in the validation list.
End Sub
Another reason for a Sub is that I need to "access" the actual list of options in the cell because some of the validation formulas are long with many conditions and I don't want to duplicate that logic in VBA.
I looked around the web a lot and did not succeed.
Any help will be appreciated.
Thanks,
Jay