Differences in Excel 2002

Tyarra

New Member
Joined
Aug 23, 2006
Messages
23
Are there known incompatibilities between different "builds" of Excel 2002? We're running Microsoft Excel 2002 (10.4524.4219) SP-2 ...
I'm uncertain of what our customer is running, however, they are running Excel 2002.

I did an order form workbook ... when we run it here, on our Excel, it works just as it should. When the customer runs it, it stops, on the following line of VBA:

Code:
Selection.PasteSpecial Paste:=xlPasteColumnWidths, Operation:=xlNone, _
        SkipBlanks:=False, Transpose:=False

(more code, to show it in context:)

Code:
'Copy the information over to the new workbook (Values, Column Width, Format)
WB2.Activate
Sheets.Add After:=WB2.Sheets("Information")
ActiveSheet.Name = "Order"

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
Selection.PasteSpecial Paste:=xlPasteColumnWidths, Operation:=xlNone, _
        SkipBlanks:=False, Transpose:=False
Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
        SkipBlanks:=False, Transpose:=False

Application.CutCopyMode = False

Any ideas?
Thanks!
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Thank you! That apparently seems to have been the issue. The "8" replacement was easier than the column by column workaround. :)

... and I missed that post due to not looking for 2003 or 2000. :) Teach me to expand my horizons a bit!
 
Upvote 0

Forum statistics

Threads
1,215,790
Messages
6,126,923
Members
449,348
Latest member
Rdeane

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top