Advertisement

07.25.2008 at 09:12AM PDT, ID: 23595976
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.2

Hyperlink in ASP page using Javascript to open a Chart Sheet in excel

Asked by aCCeSSgRanteD in Active Server Pages (ASP), Microsoft Excel Spreadsheet Software, JScript

Tags: , ,

I have an ASP page that I want to have a hyperlink to open to a specific Chart Sheet in Excel.

I am able to open Worksheets fine, but Chart Sheets are another story.  I looked around and it looks like you can do this by creating a new worksheet and creating a macro that sends you to the chart by clicking on a cell.


**************************

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
  If Not Intersect(Target, Range("B2")) Is Nothing Then 'When selecting Cell B2 which should be the palce of your so called hyperlink
      On Error Resume Next
      Charts("SpeadsheetChart1").Activate 'Chart Name
      If Err.Number <> 0 Then
          MsgBox "No such chart exists.", vbCritical, _
              "Chart Not Found"
      End If
      On Error GoTo 0
  End If
  End Sub
**************************

This works if I am using excel to hyperlink to the chart, but I am trying to link it from a webpage.  

Any Ideas?

I tried this ..
myApp.Worksheets(sheet).Range("B2").Select;
That only seems to select the cell.

If there is another way of doing this.. I'm open to try..

Thanks!Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
<script language=javascript>
 
function startExcel(sheet)
{
var myApp = new ActiveXObject("Excel.Application");
if (myApp != null)
{
myApp.Workbooks.Open("//server/spreadsheet2008.xls");
myApp.Worksheets(sheet).Activate;
myApp.Worksheets(sheet).Range("B2").Select; 
myApp.Visible = true;
myApp.readOnly = true;
}
}
 
</script>
 
<a href="javascript: startExcel('sheet1')" style="cursor: pointer;">Link</A>
[+][-]07.25.2008 at 11:58AM PDT, ID: 22091330

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Active Server Pages (ASP), Microsoft Excel Spreadsheet Software, JScript
Tags: ASP, Javascript; Excel and ASP, Excel Version 2000
Sign Up Now!
Solution Provided By: irudyk
Participating Experts: 1
Solution Grade: A
 
 
[+][-]07.25.2008 at 12:26PM PDT, ID: 22091553

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628