![]() |
seraching a certain range
I search parts of a spreadsheet for certain words etc. My code looks like:
Set searchRange = Range(Cells(rng5.Row, 1), Cells(rng5.Row, 100)) Set rng2 = Worksheets("Beräkning").Range(searchRange.Address ).Find("Date", LookIn:=xlValues) and this works fine. I just wonder is it not possible to write the code in a shorter way by writing something like eg. Set rng2 = Worksheets("Beräkning").searchRange.Find("Date", LookIn:=xlValues) It does not work for me when I write it like that. what am i doing wrong? Thanks |
seraching a certain range
If the first way works then use it. Re-factoring for the sake of it (i.e. to use less lines/words) is no worth it. Re-factor to chop up re-usable code, create classes etc -- MattShoreso ----------------------------------------------------------------------- MattShoreson's Profile: http://www.excelforum.com/member.php...nfo&userid=347 View this thread: http://www.excelforum.com/showthread.php?threadid=56328 |
seraching a certain range
a bit simpler perhaps
x=Worksheets("sheet2").Range("a1:h13").Find("date" ).Address End With -- Don Guillett SalesAid Software "Arne Hegefors" wrote in message ... I search parts of a spreadsheet for certain words etc. My code looks like: Set searchRange = Range(Cells(rng5.Row, 1), Cells(rng5.Row, 100)) Set rng2 = Worksheets("Beräkning").Range(searchRange.Address) .Find("Date", LookIn:=xlValues) and this works fine. I just wonder is it not possible to write the code in a shorter way by writing something like eg. Set rng2 = Worksheets("Beräkning").searchRange.Find("Date", LookIn:=xlValues) It does not work for me when I write it like that. what am i doing wrong? Thanks |
All times are GMT +1. The time now is 03:31 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com