datacontrol
Registered User.
- Local time
- Today, 19:33
- Joined
- Jul 16, 2003
- Messages
- 142
I need to procure code that takes an existing excel workbook and deletes row one and adds a "dummy" row of data at row 3.
I want to be able to do this via my switchboard, without the user having to open excel at all.
Is it possible or did I fall and bump my head?
This is what I have so far...not very intuitive though
Sub Macro1()
Rows("1:1").Select
Selection.delete Shift:=xlUp
End Sub
I want to be able to do this via my switchboard, without the user having to open excel at all.
Is it possible or did I fall and bump my head?
This is what I have so far...not very intuitive though
Sub Macro1()
Rows("1:1").Select
Selection.delete Shift:=xlUp
End Sub