Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
cbm cbm is offline
external usenet poster
 
Posts: 13
Default This Hyperlink formula doesnt work

Hi, i need a formula to make an Hyperlink to de name of the sheet i
write in cell E5064

I was trying with this but didnīt work

=HYPERLINK("[MACRO EXCEL GENERAR HOJAS Y ESTAD DEFINITIVA.xls]
&(=E5064) &!$E$7"; "Go to this sheet")

Can anybody help PLEASE?

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,092
Default This Hyperlink formula doesnt work

This should get you started..

Sub AddHyper()
Dim sht As String

sht = ActiveSheet.Range("E5064").Value
ActiveSheet.Hyperlinks.Add Anchor:=Range("E5064"), Address:="",
SubAddress:= _
sht & "!E7"
End Sub

Mike F
"cbm" wrote in message
oups.com...
Hi, i need a formula to make an Hyperlink to de name of the sheet i
write in cell E5064

I was trying with this but didnīt work

=HYPERLINK("[MACRO EXCEL GENERAR HOJAS Y ESTAD DEFINITIVA.xls]
&(=E5064) &!$E$7"; "Go to this sheet")

Can anybody help PLEASE?


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default This Hyperlink formula doesnt work

Did you try removing the equal sign from =E5064

--
Regards,
Tom Ogilvy


"cbm" wrote in message
oups.com...
Hi, i need a formula to make an Hyperlink to de name of the sheet i
write in cell E5064

I was trying with this but didnīt work

=HYPERLINK("[MACRO EXCEL GENERAR HOJAS Y ESTAD DEFINITIVA.xls]
&(=E5064) &!$E$7"; "Go to this sheet")

Can anybody help PLEASE?


  #4   Report Post  
Posted to microsoft.public.excel.programming
cbm cbm is offline
external usenet poster
 
Posts: 13
Default This Hyperlink formula doesnt work

Thanks Mike, Iīve put it into a command button bur i had a sintaxis
error:

I guess the error is here, but i donīt knowhow to solve it
SubAddress:= _
sht & "!E7"


Mike Fogleman ha escrito:

This should get you started..

Sub AddHyper()
Dim sht As String

sht = ActiveSheet.Range("E5064").Value
ActiveSheet.Hyperlinks.Add Anchor:=Range("E5064"), Address:="",
SubAddress:= _
sht & "!E7"
End Sub

Mike F
"cbm" wrote in message
oups.com...
Hi, i need a formula to make an Hyperlink to de name of the sheet i
write in cell E5064

I was trying with this but didnīt work

=HYPERLINK("[MACRO EXCEL GENERAR HOJAS Y ESTAD DEFINITIVA.xls]
&(=E5064) &!$E$7"; "Go to this sheet")

Can anybody help PLEASE?


  #5   Report Post  
Posted to microsoft.public.excel.programming
cbm cbm is offline
external usenet poster
 
Posts: 13
Default This Hyperlink formula doesnt work

Hi Tom, I did but message coudnīt find the reference comes on popping

cbm ha escrito:

Thanks Mike, Iīve put it into a command button bur i had a sintaxis
error:

I guess the error is here, but i donīt knowhow to solve it
SubAddress:= _
sht & "!E7"


Mike Fogleman ha escrito:

This should get you started..

Sub AddHyper()
Dim sht As String

sht = ActiveSheet.Range("E5064").Value
ActiveSheet.Hyperlinks.Add Anchor:=Range("E5064"), Address:="",
SubAddress:= _
sht & "!E7"
End Sub

Mike F
"cbm" wrote in message
oups.com...
Hi, i need a formula to make an Hyperlink to de name of the sheet i
write in cell E5064

I was trying with this but didnīt work

=HYPERLINK("[MACRO EXCEL GENERAR HOJAS Y ESTAD DEFINITIVA.xls]
&(=E5064) &!$E$7"; "Go to this sheet")

Can anybody help PLEASE?




  #6   Report Post  
Posted to microsoft.public.excel.programming
cbm cbm is offline
external usenet poster
 
Posts: 13
Default This Hyperlink formula doesnt work

GOT IT!!!

Into a command button, works perfect, THANKS A LOT!!! (How many nights
thinking how to do it!)

Iīll copy it here for any ther user:


Private Sub CommandButton6_Click()

Dim sht As String


sht = ActiveSheet.Range("D5068").Value
ActiveSheet.Hyperlinks.Add Anchor:=Range("E5064"), Address:="",
SubAddress:=sht & "!A1"
End Sub

cbm ha escrito:

Hi Tom, I did but message coudnīt find the reference comes on popping

cbm ha escrito:

Thanks Mike, Iīve put it into a command button bur i had a sintaxis
error:

I guess the error is here, but i donīt knowhow to solve it
SubAddress:= _
sht & "!E7"


Mike Fogleman ha escrito:

This should get you started..

Sub AddHyper()
Dim sht As String

sht = ActiveSheet.Range("E5064").Value
ActiveSheet.Hyperlinks.Add Anchor:=Range("E5064"), Address:="",
SubAddress:= _
sht & "!E7"
End Sub

Mike F
"cbm" wrote in message
oups.com...
Hi, i need a formula to make an Hyperlink to de name of the sheet i
write in cell E5064

I was trying with this but didnīt work

=HYPERLINK("[MACRO EXCEL GENERAR HOJAS Y ESTAD DEFINITIVA.xls]
&(=E5064) &!$E$7"; "Go to this sheet")

Can anybody help PLEASE?


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default This Hyperlink formula doesnt work

=HYPERLINK("[MACRO EXCEL GENERAR HOJAS Y ESTAD
DEFINITIVA.xls]"&E5064&"!$E$7"; "Go to this sheet")

worked fine for me. (assuming your list separator is a semicolon - I tested
with a comma since that is the list separator for my regional version of
excel).

--
Regards,
Tom Ogilvy




"cbm" wrote in message
oups.com...
Hi Tom, I did but message coudnīt find the reference comes on popping

cbm ha escrito:

Thanks Mike, Iīve put it into a command button bur i had a sintaxis
error:

I guess the error is here, but i donīt knowhow to solve it
SubAddress:= _
sht & "!E7"


Mike Fogleman ha escrito:

This should get you started..

Sub AddHyper()
Dim sht As String

sht = ActiveSheet.Range("E5064").Value
ActiveSheet.Hyperlinks.Add Anchor:=Range("E5064"), Address:="",
SubAddress:= _
sht & "!E7"
End Sub

Mike F
"cbm" wrote in message
oups.com...
Hi, i need a formula to make an Hyperlink to de name of the sheet i
write in cell E5064

I was trying with this but didnīt work

=HYPERLINK("[MACRO EXCEL GENERAR HOJAS Y ESTAD DEFINITIVA.xls]
&(=E5064) &!$E$7"; "Go to this sheet")

Can anybody help PLEASE?



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
Why doesnt this work? MurrayBarn Excel Worksheet Functions 2 November 19th 09 04:21 PM
Formula doesnt work when copy in different cell Mat Excel Discussion (Misc queries) 3 April 20th 07 08:34 PM
doesnt become Hyperlink choice[_2_] Excel Programming 2 July 8th 05 02:17 PM
Formula doesnt work Kevin Excel Worksheet Functions 2 February 24th 05 12:57 AM
excel lookup help... already have formula but doesnt always work LoboNetwork[_3_] Excel Programming 9 November 4th 04 02:54 PM


All times are GMT +1. The time now is 06:07 PM.

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

About Us

"It's about Microsoft Excel"