PC Review


Reply
Thread Tools Rate Thread

Adding hyper links from summary page to tab?

 
 
Nelson
Guest
Posts: n/a
 
      10th Jun 2009
Good day, I am using this VB script to create my summary page

http://www.rondebruin.nl/summary.

Column A has the customer numbers that are the sheet tab names. what I need
to do now is have each customer number in the summary worksheet hyperlink to
the corresponding worksheet (worksheet tab) everytime the worksheet is rebuild

Any suggestions?

Thanks in advance


--
Nelson
 
Reply With Quote
 
 
 
 
Ron de Bruin
Guest
Posts: n/a
 
      10th Jun 2009
Try this one

Sub Summary_All_Worksheets_With_Formulas()
Dim Sh As Worksheet
Dim Newsh As Worksheet
Dim myCell As Range
Dim ColNum As Integer
Dim RwNum As Long
Dim Basebook As Workbook

With Application
.Calculation = xlCalculationManual
.ScreenUpdating = False
End With

'Delete the sheet "Summary-Sheet" if it exist
Application.DisplayAlerts = False
On Error Resume Next
ThisWorkbook.Worksheets("Summary-Sheet").Delete
On Error GoTo 0
Application.DisplayAlerts = True

'Add a worksheet with the name "Summary-Sheet"
Set Basebook = ThisWorkbook
Set Newsh = Basebook.Worksheets.Add
Newsh.Name = "Summary-Sheet"

'The links to the first sheet will start in row 2
RwNum = 1

For Each Sh In Basebook.Worksheets
If Sh.Name <> Newsh.Name And Sh.Visible Then
ColNum = 1
RwNum = RwNum + 1
'Copy the sheet name in the A column
ActiveSheet.Hyperlinks.Add Anchor:=Newsh.Cells(RwNum, 1), Address:="", SubAddress:= _
Sh.Name & "!A1", TextToDisplay:=Sh.Name & "!A1"

For Each myCell In Sh.Range("A1,D5:E5,Z10") '<--Change the range
ColNum = ColNum + 1
Newsh.Cells(RwNum, ColNum).Formula = _
"='" & Sh.Name & "'!" & myCell.Address(False, False)
Next myCell

End If
Next Sh

Newsh.UsedRange.Columns.AutoFit

With Application
.Calculation = xlCalculationAutomatic
.ScreenUpdating = True
End With
End Sub



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Nelson" <(E-Mail Removed)> wrote in message news:51B06CFA-1F8D-43B7-912E-(E-Mail Removed)...
> Good day, I am using this VB script to create my summary page
>
> http://www.rondebruin.nl/summary.
>
> Column A has the customer numbers that are the sheet tab names. what I need
> to do now is have each customer number in the summary worksheet hyperlink to
> the corresponding worksheet (worksheet tab) everytime the worksheet is rebuild
>
> Any suggestions?
>
> Thanks in advance
>
>
> --
> Nelson

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      10th Jun 2009
After a private mail with a verry smart Excel Guru I decide
to add code this week to the webpage that use the Hyperlink worksheet function.

Check it out this week if you want

Good night

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Ron de Bruin" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> Try this one
>
> Sub Summary_All_Worksheets_With_Formulas()
> Dim Sh As Worksheet
> Dim Newsh As Worksheet
> Dim myCell As Range
> Dim ColNum As Integer
> Dim RwNum As Long
> Dim Basebook As Workbook
>
> With Application
> .Calculation = xlCalculationManual
> .ScreenUpdating = False
> End With
>
> 'Delete the sheet "Summary-Sheet" if it exist
> Application.DisplayAlerts = False
> On Error Resume Next
> ThisWorkbook.Worksheets("Summary-Sheet").Delete
> On Error GoTo 0
> Application.DisplayAlerts = True
>
> 'Add a worksheet with the name "Summary-Sheet"
> Set Basebook = ThisWorkbook
> Set Newsh = Basebook.Worksheets.Add
> Newsh.Name = "Summary-Sheet"
>
> 'The links to the first sheet will start in row 2
> RwNum = 1
>
> For Each Sh In Basebook.Worksheets
> If Sh.Name <> Newsh.Name And Sh.Visible Then
> ColNum = 1
> RwNum = RwNum + 1
> 'Copy the sheet name in the A column
> ActiveSheet.Hyperlinks.Add Anchor:=Newsh.Cells(RwNum, 1), Address:="", SubAddress:= _
> Sh.Name & "!A1", TextToDisplay:=Sh.Name & "!A1"
>
> For Each myCell In Sh.Range("A1,D5:E5,Z10") '<--Change the range
> ColNum = ColNum + 1
> Newsh.Cells(RwNum, ColNum).Formula = _
> "='" & Sh.Name & "'!" & myCell.Address(False, False)
> Next myCell
>
> End If
> Next Sh
>
> Newsh.UsedRange.Columns.AutoFit
>
> With Application
> .Calculation = xlCalculationAutomatic
> .ScreenUpdating = True
> End With
> End Sub
>
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
>
>
> "Nelson" <(E-Mail Removed)> wrote in message news:51B06CFA-1F8D-43B7-912E-(E-Mail Removed)...
>> Good day, I am using this VB script to create my summary page
>>
>> http://www.rondebruin.nl/summary.
>>
>> Column A has the customer numbers that are the sheet tab names. what I need
>> to do now is have each customer number in the summary worksheet hyperlink to
>> the corresponding worksheet (worksheet tab) everytime the worksheet is rebuild
>>
>> Any suggestions?
>>
>> Thanks in advance
>>
>>
>> --
>> Nelson

 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      11th Jun 2009
Maybe with a credit to David McRitchie, too???

He was the first person I saw that used the =hyperlink() worksheet function with
that kind of subaddress.



Ron de Bruin wrote:
>
> After a private mail with a verry smart Excel Guru I decide
> to add code this week to the webpage that use the Hyperlink worksheet function.
>
> Check it out this week if you want
>
> Good night
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
> "Ron de Bruin" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> > Try this one
> >
> > Sub Summary_All_Worksheets_With_Formulas()
> > Dim Sh As Worksheet
> > Dim Newsh As Worksheet
> > Dim myCell As Range
> > Dim ColNum As Integer
> > Dim RwNum As Long
> > Dim Basebook As Workbook
> >
> > With Application
> > .Calculation = xlCalculationManual
> > .ScreenUpdating = False
> > End With
> >
> > 'Delete the sheet "Summary-Sheet" if it exist
> > Application.DisplayAlerts = False
> > On Error Resume Next
> > ThisWorkbook.Worksheets("Summary-Sheet").Delete
> > On Error GoTo 0
> > Application.DisplayAlerts = True
> >
> > 'Add a worksheet with the name "Summary-Sheet"
> > Set Basebook = ThisWorkbook
> > Set Newsh = Basebook.Worksheets.Add
> > Newsh.Name = "Summary-Sheet"
> >
> > 'The links to the first sheet will start in row 2
> > RwNum = 1
> >
> > For Each Sh In Basebook.Worksheets
> > If Sh.Name <> Newsh.Name And Sh.Visible Then
> > ColNum = 1
> > RwNum = RwNum + 1
> > 'Copy the sheet name in the A column
> > ActiveSheet.Hyperlinks.Add Anchor:=Newsh.Cells(RwNum, 1), Address:="", SubAddress:= _
> > Sh.Name & "!A1", TextToDisplay:=Sh.Name & "!A1"
> >
> > For Each myCell In Sh.Range("A1,D5:E5,Z10") '<--Change the range
> > ColNum = ColNum + 1
> > Newsh.Cells(RwNum, ColNum).Formula = _
> > "='" & Sh.Name & "'!" & myCell.Address(False, False)
> > Next myCell
> >
> > End If
> > Next Sh
> >
> > Newsh.UsedRange.Columns.AutoFit
> >
> > With Application
> > .Calculation = xlCalculationAutomatic
> > .ScreenUpdating = True
> > End With
> > End Sub
> >
> >
> >
> > --
> >
> > Regards Ron de Bruin
> > http://www.rondebruin.nl/tips.htm
> >
> >
> >
> >
> > "Nelson" <(E-Mail Removed)> wrote in message news:51B06CFA-1F8D-43B7-912E-(E-Mail Removed)...
> >> Good day, I am using this VB script to create my summary page
> >>
> >> http://www.rondebruin.nl/summary.
> >>
> >> Column A has the customer numbers that are the sheet tab names. what I need
> >> to do now is have each customer number in the summary worksheet hyperlink to
> >> the corresponding worksheet (worksheet tab) everytime the worksheet is rebuild
> >>
> >> Any suggestions?
> >>
> >> Thanks in advance
> >>
> >>
> >> --
> >> Nelson


--

Dave Peterson
 
Reply With Quote
 
Nelson
Guest
Posts: n/a
 
      11th Jun 2009
Thanks, I am missing something here and not seeing it, any suggestions

Dim Newsh As Worksheet
Dim myCell As Range
Dim ColNum As Integer
Dim RwNum As Long
Dim Basebook As Workbook

With Application
..Calculation = xlCalculationManual
..ScreenUpdating = False
End With

'Delete the sheet "Summary-Sheet" if it exist
Application.DisplayAlerts = False
On Error Resume Next
ThisWorkbook.Worksheets("Summary-Sheet").Delete
On Error GoTo 0
Application.DisplayAlerts = True

'Add a worksheet with the name "Summary-Sheet"
Set Basebook = ThisWorkbook
Set Newsh = Basebook.Worksheets.Add
Newsh.Name = "Summary-Sheet"

'The links to the first sheet will start in row 2
RwNum = 1

With Newsh.Cells
..HorizontalAlignment = xlCenter
..VerticalAlignment = xlCenter
End With
With Newsh.Range("A1:K1")
..Value = Array("Customer Number", "Renewal Quarter", _
"Customer Name", "ABC 2007", "ABC 2007", "ABC 2008", "ABC 2008", "ABC 2009",
"ABC 2009", "ABC 2010", "ABC 2010")
..Interior.ColorIndex = 15
..Font.Bold = True
..AutoFilter
End With

'Add headers

Newsh.Range("A1:K1").Value = Array("Customer Number", "Renewal Quarter",
"Customer Name", "PIM 2007", "CDI 2007", "PIM 2008", "CDI 2008", "PIM 2009",
"CDI 2009", "PIM 2010", "CDI 2010")

For Each Sh In Basebook.Worksheets
If Sh.Name <> Newsh.Name And Sh.Visible And Sh.Index > 3 Then
ColNum = 1
RwNum = RwNum + 1

'Copy the sheet name in the A column
ActiveSheet.Hyperlinks.Add Anchor:=Newsh.Cells(RwNum, 1), Address:="",
SubAddress:= _
Sh.Name & "!A1", TextToDisplay:=Sh.Name & "!A1"

For Each myCell In Sh.Range("A1,D5:E5,Z10") '<--Change the range
ColNum = ColNum + 1
Newsh.Cells(RwNum, ColNum).Formula = _
"='" & Sh.Name & "'!" & myCell.Address(False, False)
Next myCell

End If
Next Sh

Newsh.UsedRange.Columns.AutoFit

With Application
..Calculation = xlCalculationAutomatic
..ScreenUpdating = True
End With
End Sub




--
Nelson


"Ron de Bruin" wrote:

> Try this one
>
> Sub Summary_All_Worksheets_With_Formulas()
> Dim Sh As Worksheet
> Dim Newsh As Worksheet
> Dim myCell As Range
> Dim ColNum As Integer
> Dim RwNum As Long
> Dim Basebook As Workbook
>
> With Application
> .Calculation = xlCalculationManual
> .ScreenUpdating = False
> End With
>
> 'Delete the sheet "Summary-Sheet" if it exist
> Application.DisplayAlerts = False
> On Error Resume Next
> ThisWorkbook.Worksheets("Summary-Sheet").Delete
> On Error GoTo 0
> Application.DisplayAlerts = True
>
> 'Add a worksheet with the name "Summary-Sheet"
> Set Basebook = ThisWorkbook
> Set Newsh = Basebook.Worksheets.Add
> Newsh.Name = "Summary-Sheet"
>
> 'The links to the first sheet will start in row 2
> RwNum = 1
>
> For Each Sh In Basebook.Worksheets
> If Sh.Name <> Newsh.Name And Sh.Visible Then
> ColNum = 1
> RwNum = RwNum + 1
> 'Copy the sheet name in the A column
> ActiveSheet.Hyperlinks.Add Anchor:=Newsh.Cells(RwNum, 1), Address:="", SubAddress:= _
> Sh.Name & "!A1", TextToDisplay:=Sh.Name & "!A1"
>
> For Each myCell In Sh.Range("A1,D5:E5,Z10") '<--Change the range
> ColNum = ColNum + 1
> Newsh.Cells(RwNum, ColNum).Formula = _
> "='" & Sh.Name & "'!" & myCell.Address(False, False)
> Next myCell
>
> End If
> Next Sh
>
> Newsh.UsedRange.Columns.AutoFit
>
> With Application
> .Calculation = xlCalculationAutomatic
> .ScreenUpdating = True
> End With
> End Sub
>
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
>
>
> "Nelson" <(E-Mail Removed)> wrote in message news:51B06CFA-1F8D-43B7-912E-(E-Mail Removed)...
> > Good day, I am using this VB script to create my summary page
> >
> > http://www.rondebruin.nl/summary.
> >
> > Column A has the customer numbers that are the sheet tab names. what I need
> > to do now is have each customer number in the summary worksheet hyperlink to
> > the corresponding worksheet (worksheet tab) everytime the worksheet is rebuild
> >
> > Any suggestions?
> >
> > Thanks in advance
> >
> >
> > --
> > Nelson

>

 
Reply With Quote
 
Nelson
Guest
Posts: n/a
 
      11th Jun 2009
EXCELLENT THANKS! Got it working...
--
Nelson


"Nelson" wrote:

> Thanks, I am missing something here and not seeing it, any suggestions
>
> Dim Newsh As Worksheet
> Dim myCell As Range
> Dim ColNum As Integer
> Dim RwNum As Long
> Dim Basebook As Workbook
>
> With Application
> .Calculation = xlCalculationManual
> .ScreenUpdating = False
> End With
>
> 'Delete the sheet "Summary-Sheet" if it exist
> Application.DisplayAlerts = False
> On Error Resume Next
> ThisWorkbook.Worksheets("Summary-Sheet").Delete
> On Error GoTo 0
> Application.DisplayAlerts = True
>
> 'Add a worksheet with the name "Summary-Sheet"
> Set Basebook = ThisWorkbook
> Set Newsh = Basebook.Worksheets.Add
> Newsh.Name = "Summary-Sheet"
>
> 'The links to the first sheet will start in row 2
> RwNum = 1
>
> With Newsh.Cells
> .HorizontalAlignment = xlCenter
> .VerticalAlignment = xlCenter
> End With
> With Newsh.Range("A1:K1")
> .Value = Array("Customer Number", "Renewal Quarter", _
> "Customer Name", "ABC 2007", "ABC 2007", "ABC 2008", "ABC 2008", "ABC 2009",
> "ABC 2009", "ABC 2010", "ABC 2010")
> .Interior.ColorIndex = 15
> .Font.Bold = True
> .AutoFilter
> End With
>
> 'Add headers
>
> Newsh.Range("A1:K1").Value = Array("Customer Number", "Renewal Quarter",
> "Customer Name", "PIM 2007", "CDI 2007", "PIM 2008", "CDI 2008", "PIM 2009",
> "CDI 2009", "PIM 2010", "CDI 2010")
>
> For Each Sh In Basebook.Worksheets
> If Sh.Name <> Newsh.Name And Sh.Visible And Sh.Index > 3 Then
> ColNum = 1
> RwNum = RwNum + 1
>
> 'Copy the sheet name in the A column
> ActiveSheet.Hyperlinks.Add Anchor:=Newsh.Cells(RwNum, 1), Address:="",
> SubAddress:= _
> Sh.Name & "!A1", TextToDisplay:=Sh.Name & "!A1"
>
> For Each myCell In Sh.Range("A1,D5:E5,Z10") '<--Change the range
> ColNum = ColNum + 1
> Newsh.Cells(RwNum, ColNum).Formula = _
> "='" & Sh.Name & "'!" & myCell.Address(False, False)
> Next myCell
>
> End If
> Next Sh
>
> Newsh.UsedRange.Columns.AutoFit
>
> With Application
> .Calculation = xlCalculationAutomatic
> .ScreenUpdating = True
> End With
> End Sub
>
>
>
>
> --
> Nelson
>
>
> "Ron de Bruin" wrote:
>
> > Try this one
> >
> > Sub Summary_All_Worksheets_With_Formulas()
> > Dim Sh As Worksheet
> > Dim Newsh As Worksheet
> > Dim myCell As Range
> > Dim ColNum As Integer
> > Dim RwNum As Long
> > Dim Basebook As Workbook
> >
> > With Application
> > .Calculation = xlCalculationManual
> > .ScreenUpdating = False
> > End With
> >
> > 'Delete the sheet "Summary-Sheet" if it exist
> > Application.DisplayAlerts = False
> > On Error Resume Next
> > ThisWorkbook.Worksheets("Summary-Sheet").Delete
> > On Error GoTo 0
> > Application.DisplayAlerts = True
> >
> > 'Add a worksheet with the name "Summary-Sheet"
> > Set Basebook = ThisWorkbook
> > Set Newsh = Basebook.Worksheets.Add
> > Newsh.Name = "Summary-Sheet"
> >
> > 'The links to the first sheet will start in row 2
> > RwNum = 1
> >
> > For Each Sh In Basebook.Worksheets
> > If Sh.Name <> Newsh.Name And Sh.Visible Then
> > ColNum = 1
> > RwNum = RwNum + 1
> > 'Copy the sheet name in the A column
> > ActiveSheet.Hyperlinks.Add Anchor:=Newsh.Cells(RwNum, 1), Address:="", SubAddress:= _
> > Sh.Name & "!A1", TextToDisplay:=Sh.Name & "!A1"
> >
> > For Each myCell In Sh.Range("A1,D5:E5,Z10") '<--Change the range
> > ColNum = ColNum + 1
> > Newsh.Cells(RwNum, ColNum).Formula = _
> > "='" & Sh.Name & "'!" & myCell.Address(False, False)
> > Next myCell
> >
> > End If
> > Next Sh
> >
> > Newsh.UsedRange.Columns.AutoFit
> >
> > With Application
> > .Calculation = xlCalculationAutomatic
> > .ScreenUpdating = True
> > End With
> > End Sub
> >
> >
> >
> > --
> >
> > Regards Ron de Bruin
> > http://www.rondebruin.nl/tips.htm
> >
> >
> >
> >
> > "Nelson" <(E-Mail Removed)> wrote in message news:51B06CFA-1F8D-43B7-912E-(E-Mail Removed)...
> > > Good day, I am using this VB script to create my summary page
> > >
> > > http://www.rondebruin.nl/summary.
> > >
> > > Column A has the customer numbers that are the sheet tab names. what I need
> > > to do now is have each customer number in the summary worksheet hyperlink to
> > > the corresponding worksheet (worksheet tab) everytime the worksheet is rebuild
> > >
> > > Any suggestions?
> > >
> > > Thanks in advance
> > >
> > >
> > > --
> > > Nelson

> >

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      11th Jun 2009
I do that Dave


"Dave Peterson" <(E-Mail Removed)> schreef in bericht
news:(E-Mail Removed)...
> Maybe with a credit to David McRitchie, too???
>
> He was the first person I saw that used the =hyperlink() worksheet
> function with
> that kind of subaddress.
>
>
>
> Ron de Bruin wrote:
>>
>> After a private mail with a verry smart Excel Guru I decide
>> to add code this week to the webpage that use the Hyperlink worksheet
>> function.
>>
>> Check it out this week if you want
>>
>> Good night
>>
>> --
>>
>> Regards Ron de Bruin
>> http://www.rondebruin.nl/tips.htm
>>
>> "Ron de Bruin" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > Try this one
>> >
>> > Sub Summary_All_Worksheets_With_Formulas()
>> > Dim Sh As Worksheet
>> > Dim Newsh As Worksheet
>> > Dim myCell As Range
>> > Dim ColNum As Integer
>> > Dim RwNum As Long
>> > Dim Basebook As Workbook
>> >
>> > With Application
>> > .Calculation = xlCalculationManual
>> > .ScreenUpdating = False
>> > End With
>> >
>> > 'Delete the sheet "Summary-Sheet" if it exist
>> > Application.DisplayAlerts = False
>> > On Error Resume Next
>> > ThisWorkbook.Worksheets("Summary-Sheet").Delete
>> > On Error GoTo 0
>> > Application.DisplayAlerts = True
>> >
>> > 'Add a worksheet with the name "Summary-Sheet"
>> > Set Basebook = ThisWorkbook
>> > Set Newsh = Basebook.Worksheets.Add
>> > Newsh.Name = "Summary-Sheet"
>> >
>> > 'The links to the first sheet will start in row 2
>> > RwNum = 1
>> >
>> > For Each Sh In Basebook.Worksheets
>> > If Sh.Name <> Newsh.Name And Sh.Visible Then
>> > ColNum = 1
>> > RwNum = RwNum + 1
>> > 'Copy the sheet name in the A column
>> > ActiveSheet.Hyperlinks.Add Anchor:=Newsh.Cells(RwNum, 1),
>> > Address:="", SubAddress:= _
>> > Sh.Name & "!A1",
>> > TextToDisplay:=Sh.Name & "!A1"
>> >
>> > For Each myCell In Sh.Range("A1,D5:E5,Z10") '<--Change
>> > the range
>> > ColNum = ColNum + 1
>> > Newsh.Cells(RwNum, ColNum).Formula = _
>> > "='" & Sh.Name & "'!" & myCell.Address(False, False)
>> > Next myCell
>> >
>> > End If
>> > Next Sh
>> >
>> > Newsh.UsedRange.Columns.AutoFit
>> >
>> > With Application
>> > .Calculation = xlCalculationAutomatic
>> > .ScreenUpdating = True
>> > End With
>> > End Sub
>> >
>> >
>> >
>> > --
>> >
>> > Regards Ron de Bruin
>> > http://www.rondebruin.nl/tips.htm
>> >
>> >
>> >
>> >
>> > "Nelson" <(E-Mail Removed)> wrote in message
>> > news:51B06CFA-1F8D-43B7-912E-(E-Mail Removed)...
>> >> Good day, I am using this VB script to create my summary page
>> >>
>> >> http://www.rondebruin.nl/summary.
>> >>
>> >> Column A has the customer numbers that are the sheet tab names. what I
>> >> need
>> >> to do now is have each customer number in the summary worksheet
>> >> hyperlink to
>> >> the corresponding worksheet (worksheet tab) everytime the worksheet is
>> >> rebuild
>> >>
>> >> Any suggestions?
>> >>
>> >> Thanks in advance
>> >>
>> >>
>> >> --
>> >> Nelson

>
> --
>
> Dave Peterson
>
> __________ Information from ESET Smart Security, version of virus
> signature database 4148 (20090611) __________
>
> The message was checked by ESET Smart Security.
>
> http://www.eset.com
>
>
>



__________ Information from ESET Smart Security, version of virus signature database 4148 (20090611) __________

The message was checked by ESET Smart Security.

http://www.eset.com



 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      14th Jun 2009
FYI

I update the page today with two ways to add a hyperlink
http://www.rondebruin.nl/summary.htm



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Nelson" <(E-Mail Removed)> wrote in message news:51B06CFA-1F8D-43B7-912E-(E-Mail Removed)...
> Good day, I am using this VB script to create my summary page
>
> http://www.rondebruin.nl/summary.
>
> Column A has the customer numbers that are the sheet tab names. what I need
> to do now is have each customer number in the summary worksheet hyperlink to
> the corresponding worksheet (worksheet tab) everytime the worksheet is rebuild
>
> Any suggestions?
>
> Thanks in advance
>
>
> --
> Nelson

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Converting test to numbers and adding into a summary page =?Utf-8?B?TGF1cmE=?= Microsoft Excel Worksheet Functions 2 7th Sep 2006 04:24 PM
How do I make hyper-links in Front Page accessable using Firefox? =?Utf-8?B?TWFsY29sbQ==?= Microsoft Frontpage 2 14th Mar 2006 04:26 PM
Is there a way to remove all hyper links in a Word page at once? =?Utf-8?B?RGlzYXJyYXllZA==?= Microsoft Word Document Management 5 27th Feb 2006 03:25 AM
All Hyper Links Direct me to my home page =?Utf-8?B?U2NvdHQ=?= Microsoft Outlook 0 11th Jan 2006 03:11 PM
Adding a second summary field/page?/Merging summary report Alex Martinez Microsoft Access Reports 1 21st Sep 2005 04:42 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:29 AM.