Re: $$Excel-Macros$$ HYPERLINKS

2013-11-22 Thread Yahya Muhammad
Dear Mickey Yes. It can be achieved by creating Named Ranges. See below link: http://excel.tips.net/T003466_Tying_a_Hyperlink_to_a_Specific_Cell.html On Fri, Nov 22, 2013 at 1:01 AM, Mickey Davis amused...@gmail.com wrote: I have a spreadsheet with links to various cells. The sheet is

$$Excel-Macros$$ HYPERLINKS

2013-11-21 Thread Mickey Davis
I have a spreadsheet with links to various cells. The sheet is constantly changing, so the cell references change. Is there a way I can link from one cell to another, and if the target cell location changes, the link will automatically update? Thanks -- Are you =EXP(E:RT) or =NOT(EXP(E:RT))

$$Excel-Macros$$ Hyperlinks to a bar in Bar Chart

2013-05-20 Thread Pavan Valluru
Hi there, This is pavan. Have you ever been tried to assign Hyperlinks to a specific bar in a bar chart? or is it possible to assign hyperlinks to market or to data labels? all using vba? Share your experiance here. Thanks for this. -Pavan -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel?

$$Excel-Macros$$ HyperLinks to Sheets

2013-01-16 Thread Hilary Lomotey
Hello Experts, The code below creates hyperlinks in a worksheets, what i require is a little modification to this. assuming i have about 100 sheets in a work book, this code will line up all the hyperlinks of the worksheet name in a single row (ie 100 rows), what i need is that at the end of

Re: $$Excel-Macros$$ HyperLinks to Sheets

2013-01-16 Thread rajan verma
Sub CreateLinksToAllSheets() Dim sh As Worksheet Dim cell As Range For Each sh In ActiveWorkbook.Worksheets If ActiveSheet.Name sh.Name Then ActiveCell.Hyperlinks.Add Anchor:=Selection, Address:=, SubAddress:= _ ' sh.Name ' !A1, TextToDisplay:=sh.Name if

Re: $$Excel-Macros$$ HyperLinks to Sheets *

2013-01-16 Thread Hilary Lomotey
Thanks rajan Being a while, hope you are well .The idea is right but it doesnt actually help my course let me try and explain again if its gets to row 30 in the first column on the second column it should start from row 1 to 30 again in that order. Hope this explains well On Wed, Jan 16, 2013 at

Re: $$Excel-Macros$$ HyperLinks to Sheets *

2013-01-16 Thread ashish koul
Try this Sub CreateLinksToAllSheets() Dim sh As Worksheet Dim cell As Range, i As Long, j As Long i = 1 j = 1 For Each sh In ActiveWorkbook.Worksheets If ActiveSheet.Name sh.Name Then Cells(j, i).Select ActiveCell.Hyperlinks.Add Anchor:=Selection, Address:=, SubAddress:= _

Re: $$Excel-Macros$$ HyperLinks to Sheets * *

2013-01-16 Thread Hilary Lomotey
*BINGO- IT WORKING TO PERFECTION,* * * *very grateful Ashish and Rajan * * * * * * * On Wed, Jan 16, 2013 at 3:18 PM, ashish koul koul.ash...@gmail.com wrote: Sub CreateLinksToAllSheets() Dim sh As Worksheet Dim cell As Range, i As Long, j As Long i = 1 j = 1 For Each sh In

Re: $$Excel-Macros$$ HyperLinks to Sheets * *

2013-01-16 Thread Pankaj Singh
How to get back in hyper liked sheet after clicking on hyper link..need code..plz. On Wed, Jan 16, 2013 at 9:00 PM, Hilary Lomotey resp...@gmail.com wrote: *BINGO- IT WORKING TO PERFECTION,* * * *very grateful Ashish and Rajan * * * * * * * On Wed, Jan 16, 2013 at 3:18 PM, ashish

Re: $$Excel-Macros$$ HyperLinks to Sheets * * *

2013-01-16 Thread Hilary Lomotey
Sub ReturnToD3() Worksheets(TEMPLATE (3)).Activate Range(A1).Select End Sub On Wed, Jan 16, 2013 at 3:33 PM, Pankaj Singh pankajpepsic...@gmail.comwrote: [image: Boxbe] https://www.boxbe.com/overview This message is eligible for Automatic Cleanup! (pankajpepsic...@gmail.com) Add cleanup

Re: $$Excel-Macros$$ HyperLinks to Sheets * * * *

2013-01-16 Thread Hilary Lomotey
YOU HAVE TO AMEND THE WORKSHEET NAME IN THE CODE TO SUIT UR WORKSHEET NAME On Wed, Jan 16, 2013 at 4:07 PM, Pankaj Singh pankajpepsic...@gmail.comwrote: [image: Boxbe] https://www.boxbe.com/overview This message is eligible for Automatic Cleanup! (pankajpepsic...@gmail.com) Add cleanup

$$Excel-Macros$$ Hyperlinks

2009-06-17 Thread Jack
Hey anyone know how to make all of my hyperlinks open in read only ??? Cheers --~--~-~--~~~---~--~~ - Some important links for excel users: 1. Excel and VBA Tutorials(Video and