Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 218
Default Excel to select a row based on previous rows

The number of cells in a column until you reach a certain
text phrase is equal to the row number that the text
phrase is found in minus 1. The following code will
determine this row number. Just subtract 1 from it. The
code assumes that the column is column A and the text
phrase is "monkey". Change to suit. Change the
argument "xlWhole" to "xlPart" if the text phrase forms
only part of the cell value or their are potentially blank
spaces included.

Sub Test()
Dim rng As Range, C As Range
Dim rw As Long, txt As String
txt = "monkey"
rw = Cells(Rows.Count, 1).End(xlUp).Row
Set rng = Range(Cells(1, 1), Cells(rw, 1))
Set C = rng.Find(What:=txt, LookIn:=xlValues, _
LookAt:=xlWhole)
rw = C.Row
MsgBox rw
End Sub

Be advised that I did respond to your other request in the
Miscellaneous newsgroup. I rewrote the code I gave you
yesterday. My experiments confirmed that it works at least
according to my understanding of the problem. I can only
respond in the evening because I work during the day.

Regards,
Greg

-----Original Message-----
I greatly appreciate your help. With a few tweaks, I

made afew changes
and am well on my way.

I have to admit I am pretty embarrassed that I was not

able to decipher
such a code myself. My attempts at this were much more

complicated.

Do you know a way that I can count how many cells are in

a column until
i reach a certain value (which is identified by a text

phrase).

Thanks again,

Brock


---
Message posted from http://www.ExcelForum.com/

.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
programming to select rows based on condition Farhad Excel Discussion (Misc queries) 4 January 14th 10 01:18 AM
Select rows based on keyword? Niniel Excel Discussion (Misc queries) 14 September 21st 07 08:18 PM
Need to select rows to average based on a value in a different column Randy K New Users to Excel 1 February 15th 06 01:03 AM
Select rows based on criteria sotiris_s Excel Worksheet Functions 4 November 14th 05 12:35 PM
Select rows and sort based on type Sarah Excel Discussion (Misc queries) 0 October 11th 05 05:06 PM


All times are GMT +1. The time now is 02:21 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"