Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In this partial code below I first see what the text is in cell B23 and then
find the matching text in Row 1. I can find the text ok, and its address (in $C$R value) in row 1, but I don't know how to use that info to select that cell so that I can use an offset statement to paste values into a Range. I guess I don't know how to convert the info I have into a Range() expression so that I can select the cell. Any solution will be much appreciated Sub TrySearchMonth(month) Dim mySearch as Range ' TrySearchMonth Macro ' Macro recorded 4/14/2006 by John C. Flynn ' Dim userMonth As Range Set userMonth = Range("B23") Set mySearch = Rows(1).Find(What:=userMonth.Value, _ After:=Cells(1), _ LookIn:=xlValues, _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False) Debug.Print mySearch If mySearch = userMonth Then Address = mySearch.Address End If Debug.Print Address End Sub |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
you already have a range expression which holds a reference to the found
cell. It is the variable mySearch. Address is a property of a range, so that is why you can do msgbox mySearch.Address Sub TrySearchMonth() Dim mySearch as Range ' TrySearchMonth Macro ' Macro recorded 4/14/2006 by John C. Flynn ' Dim userMonth As Range Set userMonth = Range("B23") Set mySearch = Rows(1).Find(What:=userMonth.Value, _ After:=Cells(1), _ LookIn:=xlValues, _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False) Debug.Print mySearch If not mySearch is nothing Then Address = mySearch.Address mySearch.Select Else msgbox "Not found" End If End Sub If mySearch is nothing, then userMonth was not found. -- Regards, Tom Ogilvy "JCIrish" wrote in message ... In this partial code below I first see what the text is in cell B23 and then find the matching text in Row 1. I can find the text ok, and its address (in $C$R value) in row 1, but I don't know how to use that info to select that cell so that I can use an offset statement to paste values into a Range. I guess I don't know how to convert the info I have into a Range() expression so that I can select the cell. Any solution will be much appreciated Sub TrySearchMonth(month) Dim mySearch as Range ' TrySearchMonth Macro ' Macro recorded 4/14/2006 by John C. Flynn ' Dim userMonth As Range Set userMonth = Range("B23") Set mySearch = Rows(1).Find(What:=userMonth.Value, _ After:=Cells(1), _ LookIn:=xlValues, _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False) Debug.Print mySearch If mySearch = userMonth Then Address = mySearch.Address End If Debug.Print Address End Sub |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for you help, Tom. I'll give that a try.
Regards "Tom Ogilvy" wrote: you already have a range expression which holds a reference to the found cell. It is the variable mySearch. Address is a property of a range, so that is why you can do msgbox mySearch.Address Sub TrySearchMonth() Dim mySearch as Range ' TrySearchMonth Macro ' Macro recorded 4/14/2006 by John C. Flynn ' Dim userMonth As Range Set userMonth = Range("B23") Set mySearch = Rows(1).Find(What:=userMonth.Value, _ After:=Cells(1), _ LookIn:=xlValues, _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False) Debug.Print mySearch If not mySearch is nothing Then Address = mySearch.Address mySearch.Select Else msgbox "Not found" End If End Sub If mySearch is nothing, then userMonth was not found. -- Regards, Tom Ogilvy "JCIrish" wrote in message ... In this partial code below I first see what the text is in cell B23 and then find the matching text in Row 1. I can find the text ok, and its address (in $C$R value) in row 1, but I don't know how to use that info to select that cell so that I can use an offset statement to paste values into a Range. I guess I don't know how to convert the info I have into a Range() expression so that I can select the cell. Any solution will be much appreciated Sub TrySearchMonth(month) Dim mySearch as Range ' TrySearchMonth Macro ' Macro recorded 4/14/2006 by John C. Flynn ' Dim userMonth As Range Set userMonth = Range("B23") Set mySearch = Rows(1).Find(What:=userMonth.Value, _ After:=Cells(1), _ LookIn:=xlValues, _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False) Debug.Print mySearch If mySearch = userMonth Then Address = mySearch.Address End If Debug.Print Address End Sub |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Tom,
Just wanted to let you know that your solution really helped me. I think my problem was in not using the right form for my If..then??? At any rate , thanks again. "Tom Ogilvy" wrote: you already have a range expression which holds a reference to the found cell. It is the variable mySearch. Address is a property of a range, so that is why you can do msgbox mySearch.Address Sub TrySearchMonth() Dim mySearch as Range ' TrySearchMonth Macro ' Macro recorded 4/14/2006 by John C. Flynn ' Dim userMonth As Range Set userMonth = Range("B23") Set mySearch = Rows(1).Find(What:=userMonth.Value, _ After:=Cells(1), _ LookIn:=xlValues, _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False) Debug.Print mySearch If not mySearch is nothing Then Address = mySearch.Address mySearch.Select Else msgbox "Not found" End If End Sub If mySearch is nothing, then userMonth was not found. -- Regards, Tom Ogilvy "JCIrish" wrote in message ... In this partial code below I first see what the text is in cell B23 and then find the matching text in Row 1. I can find the text ok, and its address (in $C$R value) in row 1, but I don't know how to use that info to select that cell so that I can use an offset statement to paste values into a Range. I guess I don't know how to convert the info I have into a Range() expression so that I can select the cell. Any solution will be much appreciated Sub TrySearchMonth(month) Dim mySearch as Range ' TrySearchMonth Macro ' Macro recorded 4/14/2006 by John C. Flynn ' Dim userMonth As Range Set userMonth = Range("B23") Set mySearch = Rows(1).Find(What:=userMonth.Value, _ After:=Cells(1), _ LookIn:=xlValues, _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False) Debug.Print mySearch If mySearch = userMonth Then Address = mySearch.Address End If Debug.Print Address End Sub |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Doesn't
Dim rng as Range rng = Range(mySearch.Address) work for you? |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
actually, it would be
Dim rng as Range, mySearch as Range set rng = Range(mySearch.Address) but that seems like the long way around the block (use a range to get a range) unless you are using the address of mySearch to use on a different sheet and specify the same location. -- Regards, Tom Ogilvy wrote in message oups.com... Doesn't Dim rng as Range rng = Range(mySearch.Address) work for you? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find cell address of last cell in a column with text | Excel Worksheet Functions | |||
FIND / SEARCH text compare cell to string in 3rd cell | Excel Discussion (Misc queries) | |||
return cell address of longest text string in a range | Excel Discussion (Misc queries) | |||
to find the text and to know that particular cell address | Excel Programming | |||
Highlight found text string in cell? | Excel Programming |