vba training london - difference between vba

Forum home » Delegate support and help forum » Microsoft VBA Training and help » vba training london - Difference between VBA 2003 and VBA 2000

vba training london - Difference between VBA 2003 and VBA 2000

resolvedResolved · Low Priority · Version Standard

Arturo has attended:
Excel VBA Intro Intermediate course

Difference between VBA 2003 and VBA 2000

What is the difference between VBA 2003 and VBA 2000?

RE: Difference between VBA 2003 and VBA 2000

Hi Arturo

There is no difference between Excel VBA 2000 and 2003.

However with Excel 2007 because of new features eg No more Toolbars there will be new objects to deal with, but the basic language is the same.

Regards

Carlos

 

Training courses

 

Training information:

Welcome. Please choose your application (eg. Excel) and then post your question.

Our Microsoft Qualified trainers will then respond within 24 hours (working days).

Frequently Asked Questions
What does 'Resolved' mean?

Any suggestions, questions or comments? Please post in the Improve the forum thread.


 

VBA tip:

Add A New Sheet at the end of the Workbook

To add a new sheet at the end of the workbook you need to count the sheets in the workbook using:

Sheets.Count

Then use this value as the rank of the sheet after which you want to add the new sheet:

Sheets.Add After:=Sheets(Sheets.Count)

View all VBA hints and tips


Server loaded in 0.05 secs.