L
Legacy 185509
Guest
Hi
I have this simple thing I want to put it into vba code so it will make my life easy
my vba code will search for this text "Resize to show all values" there will be around 100 or so search result. so if result is found do this apply this code if not found return
here are my code
here is search code
and here is the code if that "resize to show all values" is found do this code
please help me out
this will save me lots of time
Thank you
I have this simple thing I want to put it into vba code so it will make my life easy
my vba code will search for this text "Resize to show all values" there will be around 100 or so search result. so if result is found do this apply this code if not found return
here are my code
here is search code
Code:
Cells.Find(What:="resize to show all values", After:=ActiveCell, LookIn:= _
xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext _
, MatchCase:=False, SearchFormat:=False).Activate
and here is the code if that "resize to show all values" is found do this code
Code:
Call dlresize
please help me out
this will save me lots of time
Thank you