USFengBULLS
Board Regular
- Joined
- May 7, 2018
- Messages
- 66
- Office Version
- 365
- Platform
- Windows
Hello All,
I have a code that runs perfectly that calls up two other macros (APPROVED, REJECTED) that work perfectly as well. Its based off a change to the Cell I11 where I have that cell as a in cell drop down list that the User can select either APPROVED or REJECTED and these two macros run fine. The problem is that every cell from I11:I500 is this Excel drop down list and I need this code to Run for all the in cell drop downs from I11:I500
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("I11")) Is Nothing Then
Select Case Range("I11")
Case "APPROVED": APPROVED
Case "REJECTED": REJECTED
End Select
End If
End Sub
If I substitute I11 with I11:I500 in the above code it of course doesn't work but logically that's what I need it to do.
Can anyone please help me with this?
I have a code that runs perfectly that calls up two other macros (APPROVED, REJECTED) that work perfectly as well. Its based off a change to the Cell I11 where I have that cell as a in cell drop down list that the User can select either APPROVED or REJECTED and these two macros run fine. The problem is that every cell from I11:I500 is this Excel drop down list and I need this code to Run for all the in cell drop downs from I11:I500
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("I11")) Is Nothing Then
Select Case Range("I11")
Case "APPROVED": APPROVED
Case "REJECTED": REJECTED
End Select
End If
End Sub
If I substitute I11 with I11:I500 in the above code it of course doesn't work but logically that's what I need it to do.
Can anyone please help me with this?