Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Using same VBA program in diff. Excel versions.

I use FIND method to locate record in a data table, it
works well in Excel 2003, but doesn't work in Excel 2000.
I don't know the reason, as it's the same file just in
different Excel version. and in that case, I can't
distribute my VBA projects to my colleagues who use Excel
2000.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 340
Default Using same VBA program in diff. Excel versions.

Most likely there are new settings for Find with Excel 2003. It is best to
do all development in the lowest version of Excel someone might have. The
following is a macro recording of Find in Excel 97:

Selection.Find(What:="a", After:=ActiveCell, LookIn:=xlFormulas, LookAt
_
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
MatchCase:= _
False).Activate

Check your statement against this, and eliminate parts that don't match up.

Robert Flanagan
Macro Systems
Delaware, U.S. 302-234-9857
http://www.add-ins.com
Productivity add-ins and downloadable books on VB macros for Excel

"John" wrote in message
...
I use FIND method to locate record in a data table, it
works well in Excel 2003, but doesn't work in Excel 2000.
I don't know the reason, as it's the same file just in
different Excel version. and in that case, I can't
distribute my VBA projects to my colleagues who use Excel
2000.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to do a UNIX-style diff between two versions of an Excel file Kilongen Excel Discussion (Misc queries) 3 August 10th 09 05:31 PM
How do I compare two versions of the same spreadsheet to see diff. John C. Excel Discussion (Misc queries) 1 February 18th 09 06:54 PM
Diff versions of Excel! aiyer[_25_] Excel Programming 2 June 22nd 04 07:17 PM
Windows versions diff Garry Jones Excel Programming 3 October 16th 03 07:44 AM


All times are GMT +1. The time now is 10:09 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"