MyFlight
Technical User
- Feb 4, 2002
- 193
I have a Multipage Worksheet I am trying to set up to a
Pricing Matrix. The Main Problem I have is two-fold.
First:
I need to have Excel Move to the Next Blank row for
Data Input.
Second:
I will need to use this Row Refererence through various Macros located within the Same Worksheet.
EXAMPLE:
A Few Givins:
On the MAC Types Worksheet Cell on CBX MAC Worksheet
C7 (Never Changes) A2 (Row Changes)
C9 (Never Changes) B2 (Row Changes)
C11 (Never Changes) C2 (Row Changes)
C13 (Never Changes) D2 (Row Changes)
C15 (Never Changes) E2 (Row Changes)
C17 (Never Changes) F2 (Row Changes)
ETC.
Sub Mac_Selection()
;This is where the Data is Input and copied from
Sheets("MAC Types"
.Select
Range("C7"
.Select
Selection.Copy
;This is where the Data is Pasted to (The ROW will always
be the same until the End of Macro
Sheets("CBX MAC"
.Select
Range("A2"
.Select
Selection.PasteSpecial Paste:=xlValues,
Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
End Sub
After exiting this Sub I would like to be able to keep the
Row Reference on the CBX MAC Worksheet, Until Such time as
I have completed all data entry.
Any and All help will be greatly appreciated.
Pricing Matrix. The Main Problem I have is two-fold.
First:
I need to have Excel Move to the Next Blank row for
Data Input.
Second:
I will need to use this Row Refererence through various Macros located within the Same Worksheet.
EXAMPLE:
A Few Givins:
On the MAC Types Worksheet Cell on CBX MAC Worksheet
C7 (Never Changes) A2 (Row Changes)
C9 (Never Changes) B2 (Row Changes)
C11 (Never Changes) C2 (Row Changes)
C13 (Never Changes) D2 (Row Changes)
C15 (Never Changes) E2 (Row Changes)
C17 (Never Changes) F2 (Row Changes)
ETC.
Sub Mac_Selection()
;This is where the Data is Input and copied from
Sheets("MAC Types"
Range("C7"
Selection.Copy
;This is where the Data is Pasted to (The ROW will always
be the same until the End of Macro
Sheets("CBX MAC"
Range("A2"
Selection.PasteSpecial Paste:=xlValues,
Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
End Sub
After exiting this Sub I would like to be able to keep the
Row Reference on the CBX MAC Worksheet, Until Such time as
I have completed all data entry.
Any and All help will be greatly appreciated.