Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
this may give you an idea:
Option Explicit Sub find_it() Dim ws As Worksheet Dim ws1 As Worksheet Dim rng As Range Dim rngfound As Range Set ws = Worksheets("Sheet1") Set ws1 = Worksheets("sheet2") Set rng = ws.Columns(5) With rng Set rngfound = .Find("tackles", LookIn:=xlValues) If Not rngfound Is Nothing Then ws1.Range("B15").Value = rngfound.Offset(1) End If End With End Sub -- Gary Keramidas "CribbsStyle" wrote in message ... I need to find the word "Tackles" in Column E and then have the value of the cell below it inserted into B15 on another sheet. This seems like it would be simple...but for some reason cant do it, lol. Any Help? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
FIND / SEARCH text compare cell to string in 3rd cell | Excel Discussion (Misc queries) | |||
find first empty cell in column and start transpose next row in that cell | Excel Programming | |||
NEED VBA TO SELECT A CELL; NOTE THE CELL VALUE;COPYADJ CELL;FIND CELL VALUE IN A RANGE AND SO ON | Excel Programming | |||
UDF code to find specific text in cell comments, then average cell values | Excel Programming | |||
find text in a cell and make cell 2 cells below that active | Excel Programming |