I have compiled the following code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("S3")) Is Nothing Then
Select Case Range("S3")
Case "Complete": Sample
Case "In Progress": InProgress
End Select
End If
End Sub
The main function of this worksheet change is to read complete or in progress from a drop down list from cell S3. I have a series of drop down lists in a column which all need to perform the about routine but I’m having difficulty to select the whole range in a specific column.
You may try this to select the entier column :
Sheets(1).Range("S:S")Then the full code: