E
Ekser
Hi,
Thanks for your reply.
Well, the user will select a complete row (1 or 2 or 3 or ....) an
based upon that, the program should do the code as described for 3, bu
for that particular row.
For instance, if he selects the row 8, the code should be:
Dim appWD As Word.Application
' Create a new instance of Word & make it visible
Set appWD = CreateObject("Word.Application.8")
appWD.Visible = True
Sheets("Template").Select
Range("A8").Copy
Sheets("Data").Select
Range("B3").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:
_
False, Transpose:=False
Sheets("Template").Select
Range("C8").Copy
Sheets("Data").Select
Range("B4").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:
_
False, Transpose:=False
So, is there some wildcard to use, something like Range("A*$*").Copy
Thanks for your reply.
Well, the user will select a complete row (1 or 2 or 3 or ....) an
based upon that, the program should do the code as described for 3, bu
for that particular row.
For instance, if he selects the row 8, the code should be:
Dim appWD As Word.Application
' Create a new instance of Word & make it visible
Set appWD = CreateObject("Word.Application.8")
appWD.Visible = True
Sheets("Template").Select
Range("A8").Copy
Sheets("Data").Select
Range("B3").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:
_
False, Transpose:=False
Sheets("Template").Select
Range("C8").Copy
Sheets("Data").Select
Range("B4").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:
_
False, Transpose:=False
So, is there some wildcard to use, something like Range("A*$*").Copy