New row in excel worksheet via VB.net

zirc

New member
Joined
Oct 28, 2004
Messages
2
Hi all

any info on how to add a blank row at the beginning of a worksheet??

Thanks...
 
Code:
Worksheet.Rows(1).EntireRow.Insert
You should use the Macro Recorder from within Excel to figure this stuff out. Use Alt|Tools|Macros|RecordMacros... and then hit Alt+F11 to open up the IDE and find your code. :)
 
Back
Top