Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to write a marco that to copy few specified rows from sheet 1 to sheet
2: .................................................. .................................................. .... R=Inputbox("pls input the first row number") R1=inputbox("pls input the last row number") Rows(R:R1).Select Selection.Copy Sheets("Sheet2").Select ActiveSheet.Paste .................................................. .................................................. ...... But, the above macro is not work at "Rows(R:R1).Select", I would like to use inputbox to enter specified number of row to copy from sheet1 to sheet2. How to do that??? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
Dim vFirst As Variant Dim vLast As Variant Do vFirst = Application.InputBox( _ Prompt:="Please input the first row number", _ Title:="Copy Rows", _ Default:=1, _ Type:=1) If vFirst = False Then Exit Sub 'user cancelled Loop Until (vFirst = 1) And (vFirst <= Rows.Count) Do vLast = Application.InputBox( _ Prompt:="Please input the last row number", _ Title:="Copy Rows", _ Default:=vFirst, _ Type:=1) If vLast = False Then Exit Sub 'user cancelled Loop Until (vLast = vFirst) And (vLast <= Rows.Count) ActiveSheet.Rows(vFirst & ":" & vLast).Copy _ Destination:=Sheets("Sheet2").Range("A1") In article , Wu wrote: I want to write a marco that to copy few specified rows from sheet 1 to sheet 2: .................................................. ............................ ......................... R=Inputbox("pls input the first row number") R1=inputbox("pls input the last row number") Rows(R:R1).Select Selection.Copy Sheets("Sheet2").Select ActiveSheet.Paste .................................................. ............................ ........................... But, the above macro is not work at "Rows(R:R1).Select", I would like to use inputbox to enter specified number of row to copy from sheet1 to sheet2. How to do that??? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
horrifyingly difficult excel chart / gantt question... | Charts and Charting in Excel | |||
Difficult (at least to me) formula question | Excel Worksheet Functions | |||
Difficult but do-able? | Excel Discussion (Misc queries) | |||
Very simple, but difficult formula question | Excel Worksheet Functions | |||
Difficult Excel Question | Excel Discussion (Misc queries) |