Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Private Sub Worksheet_Change(ByVal Target As Range)
  2. If Target.Address = "$B$1" Then
  3. Select Case UCase(IPScheduledSheet.Range("$B$1").Value)
  4. Case "YES"
  5. IPScheduledSheet.Range("$B2").Value = "Check Blux Matrix for Precert"
  6. Case "NO"
  7. IPScheduledSheet.Range("$B2").Value = "Check the NIC Site for Precert"
  8. Case Else
  9. IPScheduledSheet.Range("$B2").Value = ""
  10. End Select
  11. End If
  12. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement