Defaults for 'Find'

  • Thread starter Thread starter kirkm
  • Start date Start date
K

kirkm

When using Excel I click on 'Ctrl + F' to bring up the 'Find' box,
originally in the 'Look In' box the default setting came up as
'Formulas' now for some reason it has changed to 'Values' and I have
to keep changing it. Does anyone know how to revert the default
setting to 'Formulas'
Any help appreciated.

Thanks - Kirk
 
Excel remembers this setting from the previous edit|Find (or equivalent code in
a macro).

Once you change it to formulas, it'll be remembered until you change it to
values.
 
Hi Kirk,

As Dave says the Find arguments are 'remembered', To reset as you want in
future, record a macro, do Edit > Find setting the arguments as you want
with an empty 'Find what'. Adapt the recorded macro -

Dim rng as Range
on error resume next
Set rng = ActiveSheet.Cells.Find(recorded macro arguments)

Regards,
Peter T
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top