How do I get Excel to go to the first row where the first cell st.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I get Excel to go to the first row where the first cell starts with a
specific character? I want to place a link for A-E, F-K, l-P, etc., so I can
click to gget to the start of a preferred range.
 
CODE returns the numeric code for the first character in a text string. So
if cell A1 contained "Frank", CODE(A1) would return 70. Upper and lower
case letters return different values, "frank" would return 102, whether
this is any help. If you are tryinh to link to a known range you could
always set a hyperlink, use the bookmark button to set the link to the
range.
 
Maybe you could just use the =hyperlink() worksheet function:

=HYPERLINK(A10,"a-e")

Where A10 represented the first cell in the A-E group.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top