A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

New row(s) macro



 
 
Thread Tools Display Modes
  #1  
Old May 12th, 2009, 04:41 PM
PSM PSM is offline
Member
 
First recorded activity by OfficeFrustration: Nov 2008
Posts: 22
Default New row(s) macro

What code can I use to attach to a button whereby the user can input how many rows and which row to add them from ?

Thanks
Phil
  #2  
Old May 12th, 2009, 06:46 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default New row(s) macro

By "add" do you mean "insert" new rows?

Sub insert_some_rows()
Dim numrows As Long
Dim where As Long
numrows = InputBox("how many rows")
where = InputBox("starting at which row")
Rows(where).Resize(numrows).EntireRow.Insert
'If you want the rows inserted below "where"
'Rows(where + 1).Resize(numrows).EntireRow.Insert
End Sub


Gord Dibben MS Excel MVP

On Tue, 12 May 2009 16:41:09 +0100, PSM
wrote:


What code can I use to attach to a button whereby the user can input how
many rows and which row to add them from ?

Thanks
Phil


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:00 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.