PC Review


Reply
Thread Tools Rate Thread

Can Search's default be changed to "By Columns"?

 
 
baobob@my-deja.com
Guest
Posts: n/a
 
      8th Jan 2008
The data in my worksheets is such that, every time I launch Excel, I
need to change its Search default from "By Rows" to "By Columns".

Is there some Registry or other setting I can tweak to change that
default?

Thanks.

***
 
Reply With Quote
 
 
 
 
Dave Peterson
Guest
Posts: n/a
 
      8th Jan 2008
Saved from a previous post:

Excel tries to help by remembering the last settings you used--except for the
first search in that session.

You can use that to your advantage.

You could make a dummy workbook and put it in your xlStart folder. Have a
macro in that workbook that does a find (and sets all the stuff the way you
like). Then closes and gets out of the way.


Option Explicit
Sub auto_open()

'change the settings the way you like
Worksheets("sheet1").Cells.Find What:="", After:=ActiveCell, _
LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByColumns, _
SearchDirection:=xlNext, MatchCase:=False

ThisWorkbook.Close savechanges:=False

End Sub

The workbook opens, does a find (to fix your settings) and then closes to get
out of the way.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

But if you do an Edit|Find and change anything, then those changed settings will
be remembered.

(E-Mail Removed) wrote:
>
> The data in my worksheets is such that, every time I launch Excel, I
> need to change its Search default from "By Rows" to "By Columns".
>
> Is there some Registry or other setting I can tweak to change that
> default?
>
> Thanks.
>
> ***


--

Dave Peterson
 
Reply With Quote
 
baobob@my-deja.com
Guest
Posts: n/a
 
      21st Jan 2008
Dave:

Thanks very much for your reply. It certainly does work.

***
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
changing "search" default screen to "search companion" susie margaret Windows XP Basics 1 21st Mar 2009 04:11 PM
File Folder default action suddenly changed to "Search..." =?Utf-8?B?U2hpcm8=?= Windows XP Help 4 1st Oct 2006 10:33 AM
Changed default"search"window =?Utf-8?B?ZGVsYXJr?= Windows XP Help 1 22nd Jan 2005 02:06 PM
SP2 changed the image default from "Preview" to "Open" David Windows XP Photos 3 13th Aug 2004 05:32 PM
the default of double clicking a folder is "search...", not "open" ben Windows XP Performance 1 4th Jan 2004 09:27 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:18 AM.