Paste Special
I don't see anything that looks like it would cause columns to be inserted.
Does it happen each time you run the code?
RHall wrote:
This is the code that I used for my 2 question. Thanks for the other help.
ChDir "C:\Documents and Settings\User\My Documents\Roberts Cert Payroll"
Workbooks.Open Filename:= _
"C:\Documents and Settings\User\My Documents\Roberts Cert
Payroll\Employee Data.xls"
Range("A2:b99").Select
Selection.Copy
Windows("Time Sheet 3-D.xls").Activate
Range("A5:b102").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Windows("Employee Data.xls").Activate
ActiveWorkbook.Close
Range("C5").Select
--
none
"Dave Peterson" wrote:
If you have two workbooks open in two different instances of excel, then you'll
see this "funny" paste special dialog.
Opening both the workbooks in one instance of excel will get your "normal" paste
special dialog back.
Without seeing the code that you used, I wouldn't guess at the second question.
And for the third question, you can close the workbook like:
someworkbook.close savechanges:=false 'or true
to avoid any prompt.
RHall wrote:
When using "Paste Special" sometimes I get the full selection menu and
sometimes I only get a choice for unicode or text. What determines which one
I get?
Also, when I "paste special" requesting "Values" in a recorded macro the
receiving worksheet moves columns to the right of my paste to the left. I
pasted in columns "A" & "B" and it moved a formula in column "H" to "F".
What's going on?
Also, when recording the macro it does not capture the "NO" to saving the
file when closing it. I don't want my user to have the option to save it
since the macro used a filter selection.
Thanks for any help. RHall
--
none
--
Dave Peterson
--
Dave Peterson
|