Guest User

Untitled

a guest
Aug 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Updating column values on specific Row using VBA
  2. 1 2 3 4 5 6
  3.  
  4. x xx xy xz x1 xt
  5.  
  6. y yx tt cc z3 xcc
  7.  
  8. 'Sheet.Cells(row, column) = value
  9. ' i.e.
  10. ActiveSheet.Cells(1, 6) = "xtt"
  11.  
  12. If (ActiveSheet.Cells(1, 6) = "xt") Then
  13. ActiveSheet.Cells(1, 6) = "xtt"
  14. End If
Add Comment
Please, Sign In to add comment