Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 73
Default Cell Address

Hi All,

Is it possible to make a custom text representing cell address in a
find all like situation?

I am using a user form to find certain text and shows the result in a
list box.

it lists the cell adress and column1, column2 and column3 data in the
list box for all those find items. Instead of the cell adress in by
column1 of list box can I have something like "GO TO" and when i click
GOTO it will got the cell address? same like when we click on the cell
address on the excel find all form, except that I want GO TO instead of
showing the address.

thanks

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Cell Address

You can certainly precede the address with Goto in the list

Listbox1.Additem "Go to " & cell.Address

then in the click event you can have code like

With Listbox1
sAddr = .list(.listindex,0)
End With
sAddr = Replace(sAddr,"Go to ","")
Appliction.Goto Reference:=Range(sAddr), Scroll:=True

--
Regards,
Tom Ogilvy



"Soniya" wrote in message
oups.com...
Hi All,

Is it possible to make a custom text representing cell address in a
find all like situation?

I am using a user form to find certain text and shows the result in a
list box.

it lists the cell adress and column1, column2 and column3 data in the
list box for all those find items. Instead of the cell adress in by
column1 of list box can I have something like "GO TO" and when i click
GOTO it will got the cell address? same like when we click on the cell
address on the excel find all form, except that I want GO TO instead of
showing the address.

thanks



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 73
Default Cell Address

Thanks for the reply.

This easy, I know. what I am looking for is to hide the cell address
from the list. It should show only the word GO TO without cell address
and it links to the particular cell address.

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Cell Address

Put in an additional column with the cell address and hide the column by
making it have zero width.

--
Regards,
Tom Ogilvy


"Soniya" wrote in message
oups.com...
Thanks for the reply.

This easy, I know. what I am looking for is to hide the cell address
from the list. It should show only the word GO TO without cell address
and it links to the particular cell address.

Thanks



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
=HYPERLINK("#"&CELL("address", ADDRESS(MATCH(VALUE(B3),QuoteNotes, sarah Excel Worksheet Functions 2 February 17th 09 02:59 PM
=HYPERLINK("#"&CELL("address", ADDRESS(MATCH(VALUE(B3),Range ... ? sarah Excel Worksheet Functions 0 February 17th 09 02:06 PM
Return cell address of a cell based on contents of cell. Danny Excel Worksheet Functions 4 November 15th 08 03:11 AM
How to create table of cell names with the name's cell address WildwoodEngr Excel Discussion (Misc queries) 1 October 26th 06 02:52 PM
store cell contents and cell address for comparsion & suming Jim Whelchel Excel Programming 1 November 24th 04 04:03 PM


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

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"