F
fergalom
Hi,
I have created a XL spreadsheet in excel on winxp where i copy in some text
data and the spreadsheet then extracts certain data from the text and I then
use a macro to Organise it.
It turn out I now have to use the spreadsheet on a mac. Spreadsheet opens and
functions correctly but when I try to run the macro, macXL throws up a debug
error on the first line of the code. (The spreadsheet works perfectly on
winXL)
There are no API calls in the code and also I call the macros on MacXL via a
shortcut key.
Here are the first couple of lines of the code. MacXL returns a debug error
on the first line.
Sub BBB1()
'
' BBB1 Macro
' Macro recorded 23/09/2007 by -
'
'
Sheets("E-mail data").Select
Range("A20:M20").Select
Selection.Copy
Sheets("Registrations").Select
Range("b3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Range("b3").Copy
Range("o3").Select
Hope you can help.
F
I have created a XL spreadsheet in excel on winxp where i copy in some text
data and the spreadsheet then extracts certain data from the text and I then
use a macro to Organise it.
It turn out I now have to use the spreadsheet on a mac. Spreadsheet opens and
functions correctly but when I try to run the macro, macXL throws up a debug
error on the first line of the code. (The spreadsheet works perfectly on
winXL)
There are no API calls in the code and also I call the macros on MacXL via a
shortcut key.
Here are the first couple of lines of the code. MacXL returns a debug error
on the first line.
Sub BBB1()
'
' BBB1 Macro
' Macro recorded 23/09/2007 by -
'
'
Sheets("E-mail data").Select
Range("A20:M20").Select
Selection.Copy
Sheets("Registrations").Select
Range("b3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Range("b3").Copy
Range("o3").Select
Hope you can help.
F