Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
is there any way to default to the "workbook" setting instead of "sheet" when
using the find function? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't think so.
cpayneHTE wrote: is there any way to default to the "workbook" setting instead of "sheet" when using the find function? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
the setting "sticks" as long as Excel remains open, so perhaps run a macro?
cpayneHTE wrote: is there any way to default to the "workbook" setting instead of "sheet" when using the find function? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That setting can't be changed via "normal" excel code.
Maybe using Sendkeys???? Bob I wrote: the setting "sticks" as long as Excel remains open, so perhaps run a macro? cpayneHTE wrote: is there any way to default to the "workbook" setting instead of "sheet" when using the find function? -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Looks like the ticket.
Dave Peterson wrote: That setting can't be changed via "normal" excel code. Maybe using Sendkeys???? Bob I wrote: the setting "sticks" as long as Excel remains open, so perhaps run a macro? cpayneHTE wrote: is there any way to default to the "workbook" setting instead of "sheet" when using the find function? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sendkeys is something I wouldn't use if I were sharing the macro with others.
Too many things can go wrong. If I have to use it for my own personal macros, then I won't be upset when one of those many things go wrong. Bob I wrote: Looks like the ticket. Dave Peterson wrote: That setting can't be changed via "normal" excel code. Maybe using Sendkeys???? Bob I wrote: the setting "sticks" as long as Excel remains open, so perhaps run a macro? cpayneHTE wrote: is there any way to default to the "workbook" setting instead of "sheet" when using the find function? -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not sure I understand the objective but if it's to reset the options in the
Find dialog to their default settings this macro should do it Sub ResetFind() Dim rng As Range On Error Resume Next Set rng = Cells.Find(What:="", _ LookIn:=xlFormulas, _ SearchOrder:=xlRows, _ LookAt:=xlPart, _ MatchCase:=False) End Sub Regards, Peter T "Dave Peterson" wrote in message ... That setting can't be changed via "normal" excel code. Maybe using Sendkeys???? Bob I wrote: the setting "sticks" as long as Excel remains open, so perhaps run a macro? cpayneHTE wrote: is there any way to default to the "workbook" setting instead of "sheet" when using the find function? -- Dave Peterson |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In xl2002+ (I think), there's an additional "within" setting under the Options
button to look in the entire workbook. That setting isn't exposed through VBA. Peter T wrote: Not sure I understand the objective but if it's to reset the options in the Find dialog to their default settings this macro should do it Sub ResetFind() Dim rng As Range On Error Resume Next Set rng = Cells.Find(What:="", _ LookIn:=xlFormulas, _ SearchOrder:=xlRows, _ LookAt:=xlPart, _ MatchCase:=False) End Sub Regards, Peter T "Dave Peterson" wrote in message ... That setting can't be changed via "normal" excel code. Maybe using Sendkeys???? Bob I wrote: the setting "sticks" as long as Excel remains open, so perhaps run a macro? cpayneHTE wrote: is there any way to default to the "workbook" setting instead of "sheet" when using the find function? -- Dave Peterson -- Dave Peterson |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It's also in 2003, but you can't address it that I can see.
Dave Peterson wrote: In xl2002+ (I think), there's an additional "within" setting under the Options button to look in the entire workbook. That setting isn't exposed through VBA. Peter T wrote: Not sure I understand the objective but if it's to reset the options in the Find dialog to their default settings this macro should do it Sub ResetFind() Dim rng As Range On Error Resume Next Set rng = Cells.Find(What:="", _ LookIn:=xlFormulas, _ SearchOrder:=xlRows, _ LookAt:=xlPart, _ MatchCase:=False) End Sub Regards, Peter T "Dave Peterson" wrote in message ... That setting can't be changed via "normal" excel code. Maybe using Sendkeys???? Bob I wrote: the setting "sticks" as long as Excel remains open, so perhaps run a macro? cpayneHTE wrote: is there any way to default to the "workbook" setting instead of "sheet" when using the find function? -- Dave Peterson |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ah ha - that also explains why I didn't understand the objective !
Regards, Peter T "Dave Peterson" wrote in message ... In xl2002+ (I think), there's an additional "within" setting under the Options button to look in the entire workbook. That setting isn't exposed through VBA. Peter T wrote: Not sure I understand the objective but if it's to reset the options in the Find dialog to their default settings this macro should do it Sub ResetFind() Dim rng As Range On Error Resume Next Set rng = Cells.Find(What:="", _ LookIn:=xlFormulas, _ SearchOrder:=xlRows, _ LookAt:=xlPart, _ MatchCase:=False) End Sub Regards, Peter T "Dave Peterson" wrote in message ... That setting can't be changed via "normal" excel code. Maybe using Sendkeys???? Bob I wrote: the setting "sticks" as long as Excel remains open, so perhaps run a macro? cpayneHTE wrote: is there any way to default to the "workbook" setting instead of "sheet" when using the find function? -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lost "File Menu" - now it's "Edit / View / Insert.." but no "F | Excel Discussion (Misc queries) | |||
Using "Find" function in Excel 2000, edit data without closing Fin | Excel Discussion (Misc queries) | |||
Make "Edit" mode default, rather than "Enter"? | Excel Discussion (Misc queries) | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
I get message "cannot find directory" with ExcelTools Menu | Setting up and Configuration of Excel |