Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
how do i record a "find"?
Don Guillett wrote: A good way to learn is to record a macro while doing it manually. Then, clean it up. I am designing a €śbasic€ť database in work and having trouble with some macros [quoted text clipped - 24 lines] Anyone have a clue? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
on the toolbar menu
select your rangeEDITfind -- Don Guillett Microsoft MVP Excel SalesAid Software "Peterzh193" <u52491@uwe wrote in message news:9764abd6dd7b6@uwe... how do i record a "find"? Don Guillett wrote: A good way to learn is to record a macro while doing it manually. Then, clean it up. I am designing a €śbasic€ť database in work and having trouble with some macros [quoted text clipped - 24 lines] Anyone have a clue? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ah right! ok...i am using Excel 2007 where do i find this???
Don Guillett wrote: on the toolbar menu select your rangeEDITfind how do i record a "find"? [quoted text clipped - 6 lines] Anyone have a clue? |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ok i have found it, but struggle to get it reference the cell
Peterzh193 wrote: ah right! ok...i am using Excel 2007 where do i find this??? on the toolbar menu select your rangeEDITfind [quoted text clipped - 4 lines] Anyone have a clue? |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
HOME tab, EDITING group
"Peterzh193" <u52491@uwe wrote in message news:97655425f8e38@uwe... ah right! ok...i am using Excel 2007 where do i find this??? Don Guillett wrote: on the toolbar menu select your rangeEDITfind how do i record a "find"? [quoted text clipped - 6 lines] Anyone have a clue? |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Sub demoFIND() Dim cell As Range Dim addr As String Dim what As String what = "ABC" Set cell = Cells.Find(what) If Not cell Is Nothing Then addr = cell.Address Do cell.Interior.Color = vbRed Set cell = Cells.FindNext(cell) Loop While cell.Address < addr End If End Sub ' NOTE that FIND is circular, so once its found all the cells it starts again....so we save the first address and check until FIND loops back and starts again code was probably originally from HELP in Excel 2000. Is this helpful? "Peterzh193" <u52491@uwe wrote in message news:97655e2521620@uwe... ok i have found it, but struggle to get it reference the cell Peterzh193 wrote: ah right! ok...i am using Excel 2007 where do i find this??? on the toolbar menu select your rangeEDITfind [quoted text clipped - 4 lines] Anyone have a clue? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Search / Find Function | Excel Worksheet Functions | |||
Find / Search Function | Excel Discussion (Misc queries) | |||
Find value, perform function, search for next value | Excel Programming | |||
Find & Search Function | Excel Worksheet Functions | |||
Excel – Macro Problem – Find/Search and Insert | Excel Programming |