Installing Essbase Excel Add-in on 11.1.2 and Excel 2007

Hi All,
Just wondering if anyone has had any success installing the excel add-in (essexcln.xll) on Office 2007 and 11.1.2? I've been trying over the weekend, so that I can start using the vba api with essbase and I'm having no luck. I've tried the essexcln.xll at (installed drive)\oracle\Middleware\EPMSystem11R1\products\essbase\bin and I'm getting a "file is in a different format than specified by the file extension" message box, and a whole spreadsheet of random characters.
I've also tried installing the add-in through the patch created for 11.1.1.3. The add-in works, but if I try to use the API to open an outline, I get an "outline too new" error.
Anyone have any hints?
Thanks in advance,
Nathan

Hi John,
Thanks for the help. So I've tried installing the add-in both on Windows Server 2003 and Windows Server 2008, and I'm still getting the "The file you are trying to open, 'essexcln.xll', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do you want to open the file now?" message box. I've tried running excel as an administrator, then adding the add-in through excel's add-in menu.
When I open the file, the first line of the sheet says: This program cannot be run in dos mode.
Also, both servers are 64-bit. I'm unsure if this could affect the add-in working.
Thanks in advance,
Nathan

Similar Messages

  • Cannot view Master Data Services Models with Excel Add-In, using MSSQServer 2014 Trial and Excel 2010 (non-trial)

    I'm using using MSSQServer 2014 Trial with Master Data Services installed. I have connected to the MDS server with the Excel 2010 MDS Add-In. 
    Models are not listed in the Add-In's Explorer browser. When I open the MDS server with IE, no models are listed either.
    I can view them locally on the server in IE.
    There are no remote DB access issues.
    Is it just that the 2014 Trial version does not supply this info remotely??

    Was a Model Permission issue. Fixed here: http://technet.microsoft.com/en-us/library/ff487055.aspx
    Would be good if the interface would show some kind of alert to that fact.

  • I have installed about 35 add-ons in my firefox 4 , and it got very slow in brosing sites like facebook and youtube and others..always at scrolling through the page or clicking on buttons...etc

    i have installed about 35 add-ons in my firefox 4 , and it got very slow in browsing sites like facebook and youtube and others. at scrolling through the page or clicking on buttons...etc
    this is nit occuring in google chrome in the same degree

    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Essbase Excel Add-In (11.1.2.1) and Office 2010

    I was wondering if anyone knows if the Essbase Excel Add-In (v11.1.2.1) is compatible in Office 2010 (64-bit)?
    I found some search results from about 6-8 months ago saying that it was supported in Office 2010, but not in the 64-bit edition. Does anyone know if this has changed and if this is in fact supported?
    If not supported has it been tested to at least work?
    Thank you in advance.

    Have a read of the following on Oracle Support - Support for Office 2010 in Essbase Excel Add-In and Smart View [ID 1191235.1]
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Does mac have a word and excel equivalent, does mac have a word and excel equivalent, does mac have a word and excel equivalent

    does mac have a word and excel equivalent or do I need to use Windows for Mac and get the software separately?

    Mac has Pages and Numbers, which are mostly compatible with word and excel.   Both are available in the App Store for $20 each.
    You can also buy Microsoft's office for Mac suite. 

  • Installed lion to learn it does not run word and excel

    This is crazy.  I feel like going back to the older version.  Why would it not run my microsoft/mac software.

    Newer versions of microsoft office are supported (2008 and 2011), however anything older than that is a PowerPC application and will not work with lion. I have office 2004 and that no longer works so I know how you feel. Luckily, nyou have a number of options. You can use a number of free services such as google docs or open office. You could also upgrade to a newer version of Microsoft Office. You could also purchase the iWork applications from the Mac App Store for 20 dollars each. These applications can open office documents as well as save in a microsoft office format. Finally, you can downgrade your OS back to Snow Leopard.

  • Memory usage of excel stays high after Macro is executed and excel crashes after trying to close it

    Hi,
    I'm trying to resolve an issue with an excel based tool. The macros retrieve data from an Oracle database and do calculations with the data. They also open and write into files in the same directory. The macros all run and finish the calculations. I can
    continue to use and modify the sheet. I can also close the workbook, however excel memory usage I see in the windows Task manager stays elevated.If I  close Excel it says: Excel stopped working and then it tries to recover information...
    I assume something in the macro did not finish properly and memory was not released. I would like to check what is still open (connection, stream or any other object) when I close the workbook I would like to have a list of all still used memory. Is there
    a possibility to do so.
    Here the code I'm using, its reduced to functions which open something. Functions   
    get_v_tools() and get_change_tools() are same as get_client_positions().
    Public conODBC As New ADODB.Connection
    Public myPath As String
    Sub get_positions()
    Dim Src As range, dst As range
    Dim lastRow As Integer
    Dim myPath As String
    lastRow = Sheets("SQL_DATA").Cells(Sheets("SQL_DATA").rows.Count, "A").End(xlUp).Row
    Sheets("SQL_DATA").range("A2:AD" & lastRow + 1).ClearContents
    Sheets("SQL_DATA").range("AG2:BE" & lastRow + 2).ClearContents
    Sheets("SQL_DATA").range("AE3:AF" & lastRow + 2).ClearContents
    k = Sheets("ToolsList").Cells(Sheets("ToolsList").rows.Count, "A").End(xlUp).Row + 1
    Sheets("ToolsList").range("A2:M" & k).ClearContents
    'open connection
    Call open_connection
    lastRow = Sheets("SQL_DATA").Cells(Sheets("SQL_DATA").rows.Count, "A").End(xlUp).Row
    If lastRow < 2 Then GoTo ErrorHandling
    'copy bs price check multiplications
    Set Src = Sheets("SQL_DATA").range("AE2:AF2")
    Set dst = Worksheets("SQL_DATA").range("AE2").Resize(lastRow - 1, Src.columns.Count)
    dst.Formula = Src.Formula
    On Error GoTo ErrorHandling
    'new prices are calculated
    newPrice_calculate (lastRow)
    Calculate
    myPath = ThisWorkbook.Path
    'Refresh pivot table in Position Manager
    Sheets("Position Manager").PivotTables("PivotTable3").ChangePivotCache ActiveWorkbook. _
    PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
    myPath & "\[Position_Manager_v1.0.xlsm]SQL_DATA!R1C2:R" & lastRow & "C31" _
    , Version:=xlPivotTableVersion14)
    ErrorHandling:
    Set Src = Nothing
    Set dst = Nothing
    If conODBC.State <> 0 Then
    conODBC.Close
    End If
    End Sub
    Sub open_connection()
    Dim sql_data, sql_data_change, sql_data_v As Variant
    Dim wdth, TotalColumns, startRow As Integer
    Dim rst As New ADODB.Recordset
    Errorcode = 0
    On Error GoTo ErrorHandling
    Errorcode = 1
    With conODBC
    .Provider = "OraOLEDB.Oracle.1"
    .ConnectionString = "Password=" & pswrd & "; Persist Security Info=True;User ID= " & UserName & "; Data Source=" & DataSource
    .CursorLocation = adUseClient
    .Open
    .CommandTimeout = 300
    End With
    startRow = Sheets("SQL_DATA").Cells(Sheets("SQL_DATA").rows.Count, "A").End(xlUp).Row + 1
    sql_data = get_client_positions(conODBC, rst)
    wdth = UBound(sql_data, 1)
    Sheets("SQL_DATA").range("A" & startRow & ":AA" & wdth + startRow - 1).Value = sql_data
    'Run change tools instruments
    startRow = Sheets("ToolsList").Cells(Sheets("ToolsList").rows.Count, "A").End(xlUp).Row + 1
    sql_data_change = get_change_tools(conODBC, rst)
    wdth = UBound(sql_data_change, 1)
    Sheets("ToolsList").range("A" & startRow & ":M" & wdth + startRow - 1).Value _
    = sql_data_change
    'open SQL for V tools instruments
    startRow = Sheets("ToolsList").Cells(Sheets("ToolsList").rows.Count, "A").End(xlUp).Row + 1
    sql_data_v = get_v_tools(conODBC, rst)
    wdth = UBound(sql_data_v, 1)
    Sheets("ToolsList").range("A" & startRow & ":L" & startRow + wdth - 1).Value = sql_data_v
    conODBC.Close
    ErrorHandling:
    If rst.State <> 0 Then
    rst.Close
    End If
    Set rst = Nothing
    End Sub
    Private Function get_client_positions(conODBC As ADODB.Connection, rst_posi As ADODB.Recordset) As Variant
    Dim sql_data As Variant
    Dim objCommand As ADODB.Command
    Dim sql As String
    Dim records, TotalColumns As Integer
    On Error GoTo ErrorHandling
    Set objCommand = New ADODB.Command
    sql = read_sql()
    With objCommand
    .ActiveConnection = conODBC 'connection for the commands
    .CommandType = adCmdText
    .CommandText = sql 'Sql statement from the function
    .Prepared = True
    .CommandTimeout = 600
    End With
    Set rst_posi = objCommand.Execute
    TotalColumns = rst_posi.Fields.Count
    records = rst_posi.RecordCount
    ReDim sql_data(1 To records, 1 To TotalColumns)
    If TotalColumns = 0 Or records = 0 Then GoTo ErrorHandling
    If TotalColumns <> 27 Then GoTo ErrorHandling
    If rst_posi.EOF Then GoTo ErrorHandling
    l = 1
    Do While Not rst_posi.EOF
    For i = 0 To TotalColumns - 1
    sql_data(l, i + 1) = rst_posi.Fields(i)
    Next i
    l = l + 1
    rst_posi.MoveNext
    Loop
    ErrorHandling:
    rst_posi.Close
    Set rst_posi = Nothing
    Set objCommand = Nothing
    get_client_positions = sql_data
    End Function
    Private Function read_sql() As String
    Dim sqlFile As String, sqlQuery, Line As String
    Dim query_dt As String, client As String, account As String
    Dim GRP_ID, GRP_SPLIT_ID As String
    Dim fso, stream As Object
    Set fso = CreateObject("Scripting.FileSystemObject")
    client = Worksheets("Cover").range("C9").Value
    query_dt = Sheets("Cover").range("C7").Value
    GRP_ID = Sheets("Cover").range("C3").Value
    GRP_SPLIT_ID = Sheets("Cover").range("C5").Value
    account = Sheets("Cover").range("C11").Value
    sqlFile = Sheets("Cover").range("C15").Value
    Open sqlFile For Input As #1
    Do Until EOF(1)
    Line Input #1, Line
    sqlQuery = sqlQuery & vbCrLf & Line
    Loop
    Close
    ' Replace placeholders in the SQL
    sqlQuery = Replace(sqlQuery, "myClent", client)
    sqlQuery = Replace(sqlQuery, "01/01/9999", query_dt)
    sqlQuery = Replace(sqlQuery, "54747743", GRP_ID)
    If GRP_SPLIT_ID <> "" Then
    sqlQuery = Replace(sqlQuery, "7754843", GRP_SPLIT_ID)
    Else
    sqlQuery = Replace(sqlQuery, "AND POS.GRP_SPLIT_ID = 7754843", "")
    End If
    If account = "ZZ" Then
    sqlQuery = Replace(sqlQuery, "AND AC.ACCNT_NAME = 'ZZ'", "")
    Else
    sqlQuery = Replace(sqlQuery, "ZZ", account)
    End If
    ' Create a TextStream to check SQL Query
    sql = sqlQuery
    myPath = ThisWorkbook.Path
    Set stream = fso.CreateTextFile(myPath & "\SQL\LastQuery.txt", True)
    stream.Write sql
    stream.Close
    Set fso = Nothing
    Set stream = Nothing
    read_sql = sqlQuery
    End Function

    Thanks Starain,
    that's what I did the last days and found that the problem is in the
    newPrice_calculate (lastRow)
    function. This function retrieves data (sets it as arrays) which was correctly pasted into the sheet, loops through all rows and does math/calendar calculations with cell values using an Add-In("Quantlib")
    Public errorMessage as String
    Sub newPrice_calculate(lastRow)
    Dim Type() As Variant
    Dim Id() As Variant
    Dim Price() As Variant
    Dim daysTo() As Variant
    Dim fx() As Variant
    Dim interest() As Variant
    Dim ObjCalend as Variant
    Dim newPrice as Variant
    On Error GoTo Catch
    interest = Sheets("SQL_DATA").range("V2:V" & lastRow).Value
    Type = Sheets("SQL_DATA").range("L2:L" & lastRow).Value Id = Sheets("SQL_DATA").range("M2:M" & lastRow).Value Price = Sheets("SQL_DATA").range("T2:T" & lastRow).Value
    daysTo = Sheets("SQL_DATA").range("K2:K" & lastRow).Value
    fx = Sheets("SQL_DATA").range("U2:U" & lastRow).Value
    qlError = 1
    For i = 2 To lastRow
    If (i, 1) = "LG" Then
    'set something - nothing spectacular like
    interest(i, 1) = 0
    daysTo(i , 1) = 0
    Else
    adjTime = Sqr(daysTo(i, 1) / 365)
    ObjCalend(i,1) =Application.Run("qlCalendarHolidaysList", _
    "CalObj", ... , .... other input parameters)
    If IsError(ObjCalend(i,1)) Then GoTo Catch
    'other calendar calcs
    newPrice(i,1) = Application.Run( 'quantLib calcs)
    End If
    Catch:
    Select Case qlError
    Case 1
    errorMessage = errorMessage & " QuantLibXL Cal Error at: " & i & " " & vbNewLine & Err.Description
    ObjCalend(i,1) (i, 1) = "N/A"
    End Select
    Next i
    Sheets("SQL_DATA").range("AB2:AB" & lastRow).Value = newPrice
    'Sheets("SQL_DATA").range("AA2:AA" & lastRow).Value = daysTo
    ' erase and set to nothing all arrays and objects
    Erase Type
    Erase id
    Erase Price
    Set newPrice = Nothing
    Is there a possibility to clean everything in:
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    End Sub
    Thanks in advance
    Mark

  • Excell Add-in

    Hello,We used Essbase 6.1 installed on an unix server .We have developped some reports with Analyzer that the end-users can see with the Hyperion Analyzer java Applet.Those users would like also to play with the Excell add-in.How to distribute to the end-users only this Excell Add-in ? Where I can download it ? We do not want to install on each client the full Windows Essbase software .ThanksChantal

    The add-in is available via the www.hyperion.com support site. In order for a user to use it, it needs to be setup on their system. That's not as hard it may sound.1. Run the setup program for the add-in and have it install a shared version of the add-in to a network drive that the users can see.2. On the client systems, they will need 2 changes made to their paths: (A) ARBORPATH needs to be added and set to the location of the shared files (e.g. M:\essbase) (B) The PATH needs to have the path to the BIN directory added to the front of the path setting (e.g. PATH=M:\Essbase\Bin;C:\Winnt;etc.)3. Then the user launches Excel and from the TOOLS menu choose ADD-INS and navigates to the BIN directory (e.g. M:\Essbase\BIN) and selects the Excel add-in file.From that point on, Excel will load the add-in file every time Excel launches. If you need to update the add-in at a later date, you just reinstall a shared version of it over top of the existing version. No changes would be needed on the client side.Hope this helps.

  • Excel Add-In with WorkbookOpen event causes error in Word

    EDIT: New information
    I have narrowed the problem to a specific code. Following code produces the error message (see below in the original part):
    public partial class ThisAddIn
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    Globals.ThisAddIn.Application.WorkbookOpen += Application_WorkbookOpen;
    void Application_WorkbookOpen(Excel.Workbook Wb)
    int i = 0;
    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    #region VSTO generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InternalStartup()
    this.Startup += new System.EventHandler(ThisAddIn_Startup);
    this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    #endregion
    It does not matter whether I unregister the WorkBookOpen event in the ThisAddIn_Shutdown method or not. Whenever this piece of code is present Word gives me the error.
    It seems to be a bug in Excel. Can anyone test and confirm my assumption? Does anyone know a workaround?
    ORIGINAL
    I have a problem with my Excel add-in (VSTO) in a very specific situation. For some reason I can't debug the add-in when it is happening.
    In Word it is possible to insert and edit OLE objects. In this specific situation a user wants to insert and edit an Excel sheet (INSERT -> Table -> Excel Spreadsheet).
    Let's say that Excel is not running. In an ideal world the Excel process is started by Word when the user edits the spreadsheet. The Excel process is terminated when the Word document is closed. This works fine, if my Excel add-in is deactivated.
    If the Excel add-in is activated the user cannot edit the spreadsheet in Word. An error with following message is shown within Word: "The program used to create this object is Excel. That program is either not installed on your computer or it is
    not responding. To edit this object, install Excel or ensure that any dialog boxes in Excel are closed". Also the Excel process which was started by Word is not terminated when closing the document or exiting Word. Excel started by the user does not give
    any error message. No dialog is opened. The add-in works fine. So there must be an error with the Excel add-in when Excel is started by Word.
    I can reproduce the error with and without an attached debugger (Visual Studio). But for some reason there is no exception caught by Visual Studio while the error is happening.
    Can anyone help me how to investigate on that error?
    Yavuz

    Hi Yavuz,
    Based on my investigatiton, when the Excel doesn't start up by user the add-in would shut down immediately. So when the workbook open event was fired the callback already be relreased.
    As a workaround, we can use application.UserControl to detect whether the Excel applicaiton was started by user. And here is the code for your reference:
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    if(Application.UserControl)
    Globals.ThisAddIn.Application.WorkbookOpen += Application_WorkbookOpen;
    Please let me know whether it works for you.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Excel add-in 11.1.2.2 with Office 2010

    Hi,
    I have the certification grid but cannot find reference to this, can anyone point me at any official Oracle document that provides detail of whether Essbase Excel add-in is supported with Office 2010 (Excel) and if so if this requires a patch etc.
    I have seen =>http://www.network54.com/Forum/58296/thread/1288292048/Which+version+of+Essbase+Add-In+works+with+Office+2010
    Thanks,
    Robert.

    In the matrix it highlights under Client Third Party Software for 11.1.2.2 that Office 2010 is supported, the only exception is "Essbase Spreadsheet Add-In only supports 32-bit Microsoft Office."
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • BPC for excel Add-in Conflict

    Hi,
    I'm trying to find out if there any known excel add-ins that conflict with BPC for Excel (v7) and how the conflicts manifest themselves.
    I am currently specifically interested in conflicts with SAP BW BEx Analyser but would be interested in any others also.
    Would be grateful if anyone could shed some light on this.
    Many thanks

    Usually, Crashing means excel will show crashing error message and restart it.
    Excel will just return excel error message. NOT BPC or 3rd Party ADD_IN error message because it happened at the EXCEL while it is processing request from BPC addin and other 3rd partty Addin. (Of course BEX is SAP product. that's why BPC NW support BEX report in 7.5 but still it is not fully integrated with MS.)
    Sometimes it happens when retriving data from BPC or sending data. As you know those are critical functionality of BPC.
    Again, it depends on the addin but based on my experience, Hyperion Addin and BEX addin had a problem when it runs together with BPC addin.  some simple addin might not have any issue but still recommendation is not using 3rd party addin because we don't know where the error comes.
    Thank you.
    James Lim.

  • Information of Print Area is missing in VB6 Addin of version Excel 2007 and Excel 2010

    Hallo, 
    I have a problem with my old VB 6 COM Addin. My document has Print Area, but when I use my addin to open this document. The information of print area is lost. 
    This problem takes place only in the following situations.
    If the PrintArea is set in Excel 2007 and 2010, it will be missing. But in Excel 2003 without problem.
    From the code, the  ".ActiveSheet.PageSetup.printArea" is always empty, although when the print area is configurate in Excel 2007 and 2010
    What is the possible reason of this problem?
    Thanks very much.

    There are several things I don't follow in the details you gave
    "I click an excel document in the third-part program and Excel 2007 will be open automatically"
    - Describe the 3rd party program you open the workbook in if not Excel"
    - What do you mean by "click and Excel document", what do you click and where is the document
    - Why click on an Excel document (workbook, worksheet something else?) to get a 3rd party app to automate Excel, then does some other workbook load?
    It's very confusing!
    Did you try the code in VBA in the instance of the workbook whose sheet you want to return the Print Area
    Re: Excel Object Library is 9.0
    Did you set a reference to XL-9 in the test app with my code then transfer to a different system with 2007?
    However, a ref to xl-9 shouldn't be a problem if the code compiled with that ref. If the app/dll is transferred to a different system it will pick up the Excel GUID in that system, which is exactly the same for all versions since Excel97. The only time it
    would be an issue is if code compiled with a new object model is not supported when used with an older Excel object model.
    The fact my code appears to work without error returning the message "Print Area not defined" suggests it is referring to a different workbook, ie one in which the Print-Area has not been defined. Double check which workbook it is referring to,
    eg
    Private Sub cbPrintArea_Click(ByVal Ctrl As Office.CommandBarButton, _
    CancelDefault As Boolean)
    Dim ws As Excel.Worksheet
    Dim s As String, s2 As String
    On Error Resume Next
    s = xlApp.Caption
    If Err.Number Then
    MsgBox "xlApp error " & vbCr & Err.Description
    Exit Sub
    End If
    Set ws = xlApp.ActiveSheet
    s2 = ws.Parent.Name & vbCr & _
    ws.Name & vbCr & _
    ws.Range("A1").Value & vbCr
    If Err.Number > 0 Then
    MsgBox "failed to reference ActiveSheet"
    Else
    s = ws.PageSetup.PrintArea
    If Err.Number Then
    MsgBox Err.Description
    Else
    If Len(s) = 0 Then s = "Print Area not defined"
    MsgBox s2 & vbCr & s
    End If
    End If
    End Sub
    This should confirm the workbook name, activesheet name and value in A1 (before running maybe add the current time in A1 with ctrl-shift-;  in the same workbook as the print-area has been defined)
    Peter Thornton

  • Installing Essbase 11.1.1.2 Excel Add In (Client) and EAS on remote laptop

    Hi,
    Just got done installing Essbase 11.1.1.2 on a single Win 2003 server. Everything is installed EAS and Essbase Client. However, I need the Essbase Client to be ported to many users that are running Excel 2003. Also, i need EAS client to run from a laptop as instead of having to remote login to the server. My question is do I go through the same install process as I did for Essbase server? Or is there a smoother less complicated way to install. I think for the EAS client, it's ok but trying to roll the Excel Add In to hundreds of users, this could get messy.
    Thanks

    Systems management software like Microsoft SMS, Landesk or Radia should be able to help you to deploy software to many PC.
    You can ask your IT whether they have this in place.
    Otherwise, you can consider to use Smartview instead of Essbase Add-Ins, Smartview allow you to deploy the software to many PC and future upgrades.

  • Essbase excel add-on error after installing IR Studio.

    Hyperion software compatibility issues?
    Getting Essbase excel add-on error ("Error 1040007 Cannot find message database") after installing Hyperion Interactive Reporting Studio 9.3.1. We are able to consistently reproduce the error on several workstations.
    Any ideas?
    Thx,
    Ernesto

    Try installing IR first, followed by the Essbase client. I think that worked for us. I can't recall what our path looked like in that scenario I just remember if we did it in that order things worked fine. I think Support said there is no certain "install order" that truly fixes the problem, that you have to manipluate the path by hand. But I'm pretty sure installing IR first worked in our enviro.
    I do not know of a way to install IR Studio without the Essbase components, my understanding from Support is that they changed the product install thinking it was better this way, they learned after the fact it actually causes the problem you experienced. I would imagine they've changed/fixed the install behavior again in post 9.3.1 releases, but haven't heard.
    -Karen

  • Unable to find/install Essbase Excel Add-in

    Hello,
    When I installed Essbase on this computer, for some reason we did not have MS Office installed and so the Add-in was not installed automatically.
    Now, I cannot find the essexeln.xll file in the bin director and Excel does not show it as an Add-in. The Excel version I am using is 9.0.3821 SR-1.
    How do I install this add-in on my computer? Thanks.
    -- Adi

    Installing the Essbase Excel add-in is pretty harmless, and I assume this is on a PC not a server correct?
    If this is 9.3.1 and if it's on a PC just run the setup.exe for the "Hyperion Essbase Release 931 Client Windows Installer" - do you still have that downloaded??
    It should fit on a flash drive if you just want to take it over to the PC in question and run the setup.exe. There's the .exe, a .jar and a .inf file that comes with the install.
    Be sure you're logged on as an Admin on the PC before you install, that's easiest.
    Once you install do a reboot just for fun (probably not required but given the history of your install) then go back to your Start | Programs menu and run that register add-in item from above.
    Good luck, hope this helps,
    Karen

Maybe you are looking for

  • How to view current song in MiniPlayer?

    How do you see the name of the current song that's playing when in MiniPlayer mode? If I click the button to show the "up next" list, it shows the songs that are coming up next (obviously) but how do I see the name of the current song? More important

  • How do i get rid of the 5 cents on my itunes account,

    How do i get rid of the 5 cents on my itunes account. I want to change the country settings on the app store

  • Limit document search SAP_PCC_PARTNEREMPLOYEE by org

    CRM role SAP_PCC_PARTNEREMPLOYEE does not seem to hit authorization objects when searching for Leads or Opportunities.  (all documents come back in the search)  Even going to SU24 and checking the maintain doesn't seem to do the trick. CRM_ORD_LP CRM

  • Can't find fonts

    People have been telling me for years that "command-f" does not always work, and I always say, you're wrong, you mistyped what you're looking for. But I am now having problems using the command when searching for my fonts on my machine. It simply won

  • Some multiuser stratus example App Wanted.

    Some multiuser Stratus example App Wanted. So we have 10.1 but where are the examples of Stratus new features in action? I would realy like to take a look on them.