View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
mrice
 
Posts: n/a
Default Spreadsheet functions


You can do this with a macro like...

Sub Macro_D()
On error resume next
Columns(1).Find(What:="d*", After:=Cells(1,1), LookIn:=xlFormulas,
LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
MatchCase:=False _
, SearchFormat:=False).Activate
End Sub

This one searches for the first occurence of a cell beginning with a d
(either case)

If you have 26 similar macros you can link them to buttons drawn with
the forms toolbar.


--
mrice

Research Scientist with many years of spreadsheet development experience
------------------------------------------------------------------------
mrice's Profile: http://www.excelforum.com/member.php...o&userid=10931
View this thread: http://www.excelforum.com/showthread...hreadid=542638