USFengBULLS
Board Regular
- Joined
- May 7, 2018
- Messages
- 66
- Office Version
- 365
- Platform
- Windows
Hello,
I am trying to have contents in a cell in column 9 (Column I) to delete once the user selects SUBMITTED from a in cell drop down list over in column L.
Once the user selects SUBMITTED it needs to delete the contents in Column I or 9 on that same row.
I have this working for when it calls other subs but I need help on finishing the Public Sub SUBMITTED at the bottom of this post.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("L:L")) Is Nothing Then
If Target.Count > 1 Then Exit Sub
Select Case Target.Value
Case "SUBMITTED": Call SUBMITTED(Target.Row)
Case "APPROVED - FV Req.": Call APPROVED(Target.Row)
Case "APPROVED - NO FV Req.": Call APPROVED(Target.Row)
Case "RESUBMITTED": Call REVISED(Target.Row)
End Select
End If
End Sub
Public Sub SUBMITTED(trow As Double)
Range(Cells(trow, 9)).ClearContents
End Sub
I am trying to have contents in a cell in column 9 (Column I) to delete once the user selects SUBMITTED from a in cell drop down list over in column L.
Once the user selects SUBMITTED it needs to delete the contents in Column I or 9 on that same row.
I have this working for when it calls other subs but I need help on finishing the Public Sub SUBMITTED at the bottom of this post.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("L:L")) Is Nothing Then
If Target.Count > 1 Then Exit Sub
Select Case Target.Value
Case "SUBMITTED": Call SUBMITTED(Target.Row)
Case "APPROVED - FV Req.": Call APPROVED(Target.Row)
Case "APPROVED - NO FV Req.": Call APPROVED(Target.Row)
Case "RESUBMITTED": Call REVISED(Target.Row)
End Select
End If
End Sub
Public Sub SUBMITTED(trow As Double)
Range(Cells(trow, 9)).ClearContents
End Sub