how to convert xlam to xla

oklatinguy

New Member
Joined
Aug 23, 2011
Messages
2
Hi guys,

Could you give me a hand with this issue I am facing? I need to downgrade an excel2007 addin (xlam) to excel2003(xla). Created a excel2007 macro which works pretty well, but I have some reluctant colleagues who don't want to upgrade to excel2007 for uncertain reasons. Tried the exce2007export option, but I only got the original excel2007 script. In fact, imported all the macro into excel2003 and found that several excel2007 functions are not available in excel2003. Any suggestions? Thanks
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
... found that several excel2007 functions are not available in excel
Which of those functions are you using?
 
Upvote 0
Hi, thanks for replying my post. The function in bold red text is where excel2003 stops. Implemented as many equivalent excel2007-to-excel2003 codes in my macro as possible and they worked , but this one is sneaky. In excel2003 it is required to match the source and destination range for copying/pasting. However, in excel2007 is this automatic. Basically, this code merges several worksheets into one, Sheets("Combined"). How can I fix this? Thanks again...

For i = 1 To lNum
Sheets("Bin Data (" & i & ")").Select
Range("A1:E65536").Copy
Sheets("Combined").Select
Range("F65536").End(xlUp).Offset(1, 0).Select
Sheets("Combined").Paste
Next i
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,812
Members
452,945
Latest member
Bib195

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