Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Set WS = ThisWorkbook.Sheets(ComboBox1.Value)
  2. WS.Select
  3. Columns("AA").Select
  4. Set cell = Selection.Find(What:="celda", After:=ActiveCell, LookIn:=xlFormulas, _
  5. LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
  6. MatchCase:=False, SearchFormat:=False)
  7. ActiveCell.Offset(26, 1) = TextBox1
  8.  
  9.  
  10.  
  11. If cell Is Nothing Then
  12. 'do it something
  13.  
  14. Else
  15.  
  16. End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement