Guest User

Untitled

a guest
Feb 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. Private Sub Worksheet_Change(ByVal Target As Range)
  2.  
  3. If Target.Column = 16 Then 'Column P
  4.  
  5. If Target.Value >= 1 Then
  6.  
  7. MsgBox Target.Offset(, -14) 'Retrive date from B
  8.  
  9. End If
  10.  
  11. End If
  12.  
  13. End Sub
Add Comment
Please, Sign In to add comment