Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Hyperlinks in a Pivot Table - can this be done

I have someone who wants Hyperlinks to be active in a Pivot Table. It
doesn't look like this is possible and I want to verify that active
hyperlinks cannot be put in a Pivot Table. Until I can find a definite
answer, he won't accept this is not possible. If this can be done, what
needs to be done so they are active. He wants the links to go to other areas
of the workbook. We are using Excel 2003.


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,979
Default Hyperlinks in a Pivot Table - can this be done

No, hyperlinks can't be put in a pivot table.
You could use programming to select a different area in the workbook if
a cell with a specific value is clicked. For example, this code would go
on the worksheet module where the pivot table is located.

Right-click on the sheet tab, and click on View Code, then paste in this
code. Modify it to meet your workbook setup.

'==================
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Count 1 Then GoTo exitHandler

Select Case Target.Value
Case "www.sample1.com"
With Worksheets("Sheet1")
.Activate
.Range("B5").Select
End With
Case "www.sample2.com"
With Worksheets("Sheet2")
.Activate
.Range("C10").Select
End With
Case Else
'do nothing
End Select

exitHandler:
Exit Sub

End Sub
'=====================

Ellen wrote:
I have someone who wants Hyperlinks to be active in a Pivot Table. It
doesn't look like this is possible and I want to verify that active
hyperlinks cannot be put in a Pivot Table. Until I can find a definite
answer, he won't accept this is not possible. If this can be done, what
needs to be done so they are active. He wants the links to go to other areas
of the workbook. We are using Excel 2003.




--
Debra Dalgleish
Contextures
www.contextures.com/tiptech.html
Blog: http://blog.contextures.com

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
hyperlinks in pivot table Ellen Excel Discussion (Misc queries) 0 August 20th 08 09:36 PM
How do I transfer data with hyperlinks to a pivot table without l. DarcyMS Excel Worksheet Functions 1 January 23rd 08 06:56 PM
Pivot Table - Filter - Hyperlinks? Annie1904 Excel Discussion (Misc queries) 3 January 18th 08 03:08 PM
pivot table + explorer + hyperlinks lechu Excel Discussion (Misc queries) 0 September 5th 06 09:44 PM
pivot table and hyperlinks Gailc Excel Discussion (Misc queries) 0 June 21st 06 08:47 PM


All times are GMT +1. The time now is 12:39 AM.

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"