Create a macro to move address line from 3 rows to 1 single row
Closed
ESChomesecurity
Posts
1
Registration date
Friday May 16, 2014
Status
Member
Last seen
May 16, 2014
-
May 16, 2014 at 12:44 PM
ESChomesecurity - May 19, 2014 at 09:25 AM
ESChomesecurity - May 19, 2014 at 09:25 AM
Related:
- Create a macro to move address line from 3 rows to 1 single row
- Tentacle locker 1 - Download - Adult games
- Hitman 3 cheats - Guide
- Psiphon 3 download - Download - VPN
- Fnaf 1 download pc - Download - Horror
- Igi 1 download - Download - Shooters
May 19, 2014 at 09:25 AM
'
' New_Move Macro
' moves name address dsc permit and deletes passcode
'
' Keyboard Shortcut: Ctrl+n
'
ActiveWindow.SmallScroll Down:=33
Range("C966").Select
Selection.Cut Destination:=Range("A969")
Range("C969").Select
Selection.Cut Destination:=Range("B969")
Range("C970").Select
Selection.Cut Destination:=Range("C969")
Range("C971").Select
Selection.Cut Destination:=Range("D969")
Range("I971").Select
Selection.Cut Destination:=Range("F969")
Range("I972").Select
Selection.Cut Destination:=Range("G969")
Range("I969").Select
Selection.ClearContents
End Sub