ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Basic FindValue Q. "Find lword starting with A" (https://www.excelbanter.com/excel-programming/293161-basic-findvalue-q-find-lword-starting.html)

kandinsky[_3_]

Basic FindValue Q. "Find lword starting with A"
 
I made (Read: Someone in here told me how to make) a function that wil
search for a given word in a sheet.

Now I need a function to search aphabetically through a colomn, so if
Click on "A" it will go down to the first name starting with A...

Anyone

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


Tom Ogilvy

Basic FindValue Q. "Find lword starting with A"
 
Edit = Find

A*

--
Regards,
Tom Ogilvy

"kandinsky " wrote in message
...
I made (Read: Someone in here told me how to make) a function that will
search for a given word in a sheet.

Now I need a function to search aphabetically through a colomn, so if i
Click on "A" it will go down to the first name starting with A...

Anyone?


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




Frank Kabel

Basic FindValue Q. "Find lword starting with A"
 
Hi
try the following macro (and assign it to a button):

dim rng as range
dim c as range
set rng = range ("A:A")
for each c in rng
if left(c.value,1)="a" then
c.select
exit for
end if
next


--
Regards
Frank Kabel
Frankfurt, Germany

I made (Read: Someone in here told me how to make) a function that
will search for a given word in a sheet.

Now I need a function to search aphabetically through a colomn, so if
i Click on "A" it will go down to the first name starting with A...

Anyone?


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



kandinsky[_4_]

Basic FindValue Q. "Find lword starting with A"
 
For me, that only results in going to the first word that INCLUDES th
letter A. It doesn't go to the first word that STARTS with the lette
a.

I want it to take me to the first cell in the colomn, that wiic
contains a word that starts with the letter A. (And only in a specifi
Colomn, ike fx B

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


Tom Ogilvy

Basic FindValue Q. "Find lword starting with A"
 
You also need to check

Entire Cells Only

then it will find the cell that starts with the letter A.


--
Regards,
Tom Ogilvy

"kandinsky " wrote in message
...
For me, that only results in going to the first word that INCLUDES the
letter A. It doesn't go to the first word that STARTS with the letter
a.

I want it to take me to the first cell in the colomn, that wiich
contains a word that starts with the letter A. (And only in a specific
Colomn, ike fx B)


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





All times are GMT +1. The time now is 06:00 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com