Hyperion add-ins in Excel

hi,
after added the hyperion add-ins (for installing smartview), my user has difficulting working on her normal excel file which is 10mb size. she is not connect to the application but when she click on the worskheets on her excel file, it takes several minutes to show the sheet. the IT guys said its the adding of hyperion add-ins that is causing this problem. if the add-ins disabled, she can work on her file normally. Does anyone know if add-ins is really causing such issues for users? other than disable the add-ins when not using smartview, is there better alternatives? appreciate any advices, thanks!

Here is some important information on how to reduce file size. From Ozgrid website.
Unusual Excel File Size Increase
Unfortunately it is not too uncommon to have an Excel Workbook increase in file size for no apparent reason. Below are some methods to overcome this problem, that should be performed in the order stated! Please note OzGrid accepts no responsibility for any loss of data. This means save a copy of your Workbook first. After each step Save and check the File size by going to File>Properties/General If it has reduced the file size you shouldn't need to go any further!
Avoid saving as multiple versions. Save as "Microsoft Excel Workbook (*.xls). You can make this the default by going to Tools>Options/Transition and selecting Microsoft Excel Workbook from the Save Excel files as Combobox. This alone can reduce file size by 50%
Do the following to ALL Worksheets. Select any single cell then push F5, click Special and check the "Blanks" option and click Ok. Now go to Edit>Clear>All. Manually go to the last used row in the Worksheet (do not use Edit>Go to-Special "Last Cell"). Select the entire row beneath, then holding down the Ctrl+Shift key push the Down Arrow. This should select all unused rows. Now go to Edit>Clear>All. Do the same for the Columns. Now Save.
Right click on any sheet name tab and select "Select all sheets". Now right click again and select "Move or copy" Check the Create a copy option then choose "(New Book)" and click Ok. Save this new Workbook as any name and check it's file size via File>Properties/General.
If no dramatic difference delete one sheet at a time and Save, each time check it's file size via File>Properties/General and see if there has been a disproportional reduction in file size.
If there has, the Worksheet may have been corrupt, go back the the original Workbook and copy the entire contents of the possibly corrupt Worksheet. Come back to the new Workbook, insert a new Worksheet and paste the data onto it. If this does not help you may need to delete a few rows at the time (Saving each time) until you find the offending row(s).
If you have Modules and/or UserForms in the Workbook, open the VBE (Alt+F11) and right click on each in the "Project Explorer" (Ctrl+R) and Export. Now, in a new Workbook again open the VBE and go to File>Import File.. and import all Modules and UserForms into this Workbook. Use the Move or copy method (as shown in step above) to copy all sheets into this Workbook Save.
Phantom Links
See Find Excel Links to help find & repair Excel links.
Another quite common problem with Excel is that at times your Workbook may be asking you to update links when you do not have any. Of course the very first thing to check is that there are not any links you do not know about, which steps 1 and 2 will do.
1.Unhide any hidden Worksheets first. Then right click on any sheet name tab and select "Select all sheets". Now go to Edit>Find and in the Find What: box type: [*] also select Formulas from the Look in: box and click Find Next. This will find any formulae referring to another Workbook.
2.Go to Insert>Name>Define and scroll through the list to ensure no named ranges are referring to another Workbook.
3.Go to each sheet and ensure you have no linked Pictures, Charts or Controls.
4.Go to Edit>Links and select the file name under Source file, now click Change Source... In the "Change Links" dialog locate the Active workbook, ie the one you are in now, select it and click Ok. This will force the Link to refer back to itself. If you get an error go to step 5!
5.Open a new Workbook, save it as any name. Create a real link to it from you problem Workbook. Now go to Edit>Links and select the file name (not the newly created file!) under Source file, again click the Change Source... button but this time select the newly created Workbook from the "Change Links" dialog and click Ok. Now Save the Workbook and delete the real link you created and save
Last but not least go here: http://support.microsoft.com/default.aspx?scid=kb;EN-US;q188449 and download the: Download Dellinks.exe now

Similar Messages

  • How do I sign my VB / VS 2010 based shared COM add-in for Excel so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?

    My COM add-in is developed using VS 2010 and VB. It's a shared COM add-in (not VSTO) and it works with Excel 2007 - 2013. My installer is signed with a code signing certificate but it would appear that my add-in's .dll should also be signed if the user has
    checked the "Require application add-ins to be signed by a trusted publisher" option.
    The "Sign the assembly" option is checked in my add-in's VB -> My Project -> Signing. I have a .snk file selected which I seem to recall generating 6 or 7 years ago when I ported the COM add-in from VB6 to .NET. 
    I have an up-to-date Comodo code signing certificate (a pfx file called MyCompanyCodeSigningCertificatePrivateKey.pfx) which I purchased to use with the installer and was wondering if and how I could use this.
    I tried selecting my pfx file in the My Project -> Signing -> "Choose a strong name key file" dialog. It made a copy of the pfx file in my project folder but when I tried to build the project, I got the following error:
    Error 1 Cannot import the following key file: MyCompanyCodeSigningCertificatePrivateKey.pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate to the Strong Name CSP with the
    following key container name: VS_KEY_C0B6F251F0FB6016
    After a little research, I found out I might be able to use signtool to sign the dll in a post-build step.
    I added the following command to the post-build event, before the command I use to regasm the assembly.
    "path to signtool\signtool" sign /f "MyCompanyCodeSigningCertificatePrivateKey.pfx" /p "xxxx" /v "$(TargetPath)"
    When I built the project, the dll appeared to get signed (the output window showed a bunch of confirming text as well as "Successfully signed: c:\MyAddIn\bin\Release\MyAddIn.dll") but the next step in the post-build (regasm myaddin.dll /codebase)
    issued a warning RA0000 (see below) but reported "Types registered successfully".
    Here's the message I get from regasm, even though the output window says the dll was sucessfully signed:
    RegAsm : warning RA0000: Registering an unsigned assembly with /codebase can cause your assembly to interfere with other applications that may be installed on the same computer. The /codebase switch is intended to be used only with signed assemblies. Please give your assembly a strong name and re-register it.
    Types registered successfully
    I'm not using a shim if that makes a difference.
    How do I sign my add-in so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?
    Any tips would be appreciated.

    Hello,
    Why do you need to use the regasm utility from the post-build action?
    There is a difference between signing the assembly with a strong name and digital signature. The
    How to: Sign an Assembly with a Strong Name article in MSDN explains how to sign an assembly with a strong name (.snk). See
    How to digitally sign a strong named assembly for adding a digital signature.
    You may also find the
    What's the Difference, Part Five: certificate signing vs strong naming article helpful.

  • Error while opening Excel file with Add-ins "CtExcelLinksWeb.xll" for BOFC

    Hi,
    While opening an excel sheet with the Add-ins, "CtExcelLinksWeb.xll", the following error is being displayed,
    The file you ar trying to open , "CtExcelLinksWeb.xll", is in 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 wnat to open the file now?
    If any setting is required for solving the error kindly help me on it.
    Thanks
    Prity

    Hi ,
    I think you are using older version,use microsoft excel 2007 version,then it will opens.
    Regrads,
    SVS
    Edited by: svskumar on Aug 19, 2010 12:18 PM

  • How do you get your Excel Solver back? I have already tried going into add-ins. It only recently stopped working.

    How do you get your Excel Solver back? I have already tried going into add-ins. It only recently stopped working.

    dougiedc wrote:
    It boggles the mind.  The Verizon store on L Street downtown Washington, D.C. cannot access my Verizon account.  They can only sell cellphones then it's up to me to contact Verizon on my own to get the hook up. I even asked "Are you Verizon employes?  Is this a vendor store or is it really a Verizon owned and operated store?"  The answer "Yes, we are Verizon employes, yes this is a Verizon owned and operated store" ...
    Yes, it indeed boggles the mind.  I'm of course referring to the fact that your post concerns Verizon Wireless products and services.  This forum is dedicated exclusively to Verizon Communications services.   As you probably know, Verizon Wireless and Verizon Communications operate as separate companies.
    If you need help for a Verizon wireless product or service, it's best to direct questions to the Verizon Wireless forums.  You can reach them by clicking on "Wireless" (either here or at the top of the page).
    Good luck and I sincerely hope you get your issue resolved.

  • Help with data mining add ins-excel 2010

    I've wasted hours of my life now trying to figure out how to establish a connection on the data mining add in on excel 2010.  I have installed and re-installed the microsoft sql server 2012 express multiple times and don't understand what it takes
    to get this to work...Do I need SQL server and why? Do I need to download the adventureworks data file and why?  (For some reason I was able to download it properly on my first sql server install, but when I went to work the data mining connection it
    said the SQL browser must be connected...What???...I thought it was connected...there are no instructions on how that is fixed...Now I have reinstalled sql 2012 but can't download adventureworks...it says it can't
    establish a connection...I am beyond the point of frustration)...I'm not a developer or know anything about code/programming, so a lot of the lingo is way over my head anyway when I am searching for troubleshooting solutions...I just want to be able to use
    this feature in excel and it is upsetting me that I can't get it to work.  I have followed step by step instructions, watched youtube videos, etc...nothing doing...If anyone can help me it would be greatly appreciated. Thanks.

    >I'm not a developer or know anything about code/programming,
    You have two choices:
    1. Hire a programmer type to assist you
    2. Become a programmer
    BOL: Data Mining Add-ins
    Instead of Express, consider purchasing SQL Server 2012 Developer Edition:
    http://www.amazon.com/SQL-Server-Developer-Edition-2012/dp/B007RFXQAM/ref=sr_1_1?s=software&ie=UTF8&qid=1397437432&sr=1-1&keywords=sql+server+2012+developer+edition
    Install it.
    Download AdventureWorks2012 and AdventureWorksDW2012 sample databases and install them.
    Desirable (but not for beginner): install Adventure Works Cube.  This is how it looks after installation:
    Kalman Toth Database & OLAP Architect
    Free T-SQL Scripts
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • How to install 3 Excel Add-Ins in one deployment ?

    I have 3 excel add-ins which work in conjunction with each other. I want the user to install all 3 at the same time, from one install package. How to do that?
    I am following the steps in "Deploying an Office Solution by Using Windows Installer". 
    This is a single user install.
    Just guessing, I have created a visual studio solution containing the 3 add-in projects as "existing projects".  And the 4th project in this solution is a "setup and deployment" project type. InstallShield Limited Edition Project.
    I am not clear if there should be a different destination folder for the .vsto and .dll.manifest files for each add-in.
    thanks,

    Hi Steve Richter,
    Here is a MSDN article about how to Deploy Multiple Office Solutions in a Single ClickOnce Installer.
    https://msdn.microsoft.com/en-us/library/vstudio/dd465290(v=vs.100).aspx
    The article will tell you the following three points.
    Creating two Office solutions to deploy, and one Office solution as the installer project.
    Modifying the application manifest of the installer project to install two Office solutions.
    Re-signing the application and deployment manifests.
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    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.

  • Using add-ins in Word and Excel, I want to create pdfs to display page fit and with bookmark panel displayed. I cannot find how to do this.

    I am trying to create pdfs using add-ins in Word and Excel through Acrobat Pro XI. I cannot set defaults for page size or bookmark display. Does anyone know how to do this?

    Page size is dictated by what is configured for the authoring file. For custom pages sizes you'd make a matching custom page size for Acrobat (see Acrobat's Help).
    For PDF Bookmarks you use Acrobat's PDFMaker with a supported version of Word or Excel.
    You configure the PDFMaker's Preferences such that PDF Bookmarks can be made.
    Coming from Word the default Word Headings are used. You can also configure to used the default Word Styles.
    Coming from Excel you can only use the names of the worksheets within a work book.
    Alternatively you can create Bookmarks for a PDF manually using Acrobat XI (and earlier versions).
    Note that Word "Bookmarks" are in no way the same as PDF "Bookmarks".
    Be well...

  • Analyzer 7.0: Excel add-ins not loaded on opening workbook

    Hi all,
    we are having a problem with some of our workbooks which are using additional functions from a standard microsoft add-in (Analysis Toolpak - function "mduration" for exmaple).
    The add-in is checked as "load" under Extras->Add-Ins.
    Opening the workbook without analyzer is just fine.
    When opening BEx Analyzer 7.0 and then the Excel workbook, all functions from the add-in (such as "mduration") only return #NAME, as if the add-in is not loaded properly.
    Using BEx Analyzer 3.5 this DOES work, however.
    We are on SAP GUI 7.10 PL11 with BI 7.0 Add-On SP10. Excel version is 2003.
    Does anyone kow whether this is a known problem or if a solution exists (maybe with latest BI Add-On SP)?
    Thanks,
    Hendrik
    Edited by: HMaeder on Jan 21, 2010 9:57 AM

    Hi
    Go through this blog
    /people/john.appleby3/blog/2009/11/09/sap-netweaver-bw-70-excel-workbook-precalculation-or-scheduling
    and also do the global settings
    http://help.sap.com/saphelp_nw70/helpdata/en/f1/0a551ce09411d2acb90000e829fbfe/content.htm
    santosh

  • On Excel 2013 (64 bit), I can't use the Analysis ToolPack add-ins without a problem and plot the residuals.

    On Excel 2013 (64 bit), I can't use the Analysis ToolPack add-ins without a problem and plot the residuals. It went crash.

    Hi,
    In regarding of the issue, please provide us more information to assist you better.
    Do you mind telling us the Excel version number? Like 15.0.XXXX.1000
    Would you like to collect the Event Log and App Crash dump file to do further troubleshooting?
    As far as I know, if Excel crashes when using Analysis ToolPack add-ins, it usually causes by the >>Faulting module name: mso.dll<<, Please try the following method and check if it is helpful:
    1.Copy/paste the Mso.dll from another PC.
    2.Click "Start" and "Computer."
    3.Double-click "C: Drive," "Windows" and "System32." The System32 folder opens.
    4.Drag the Mso.dll file on your desktop into the System32 folder.
    5.Click "Start," type "cmd" into the search field and press "Enter" to open the Command Prompt.
    6.Type "regsvr32 mso.dll" (without the quotation marks) into the Command Prompt and press "Enter."
    7.Close the Command Prompt and restart your computer.
    Then, if the Faulting module name is not MSO.Dll, you also can upload(Or send to us via email
    [email protected])  the Event Log/App Crash dump file. We'd like to do further troubleshooting.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How can i use excel's add-ins, solvers, .xla etc...?

    I want to use excel solvers(add-ins, .xla documents) with numbers. Is it possible ?

    No.
    http://www.apple.com/feedback/numbers.html

  • GUI Patch 7 & 8 breaks MS office excel 2010 via add ins on Win 7

    We are experiencing the following problems with SAP GUI 8 (and SAP GUI 7)
    Config of device :
    Windows 7
    MS Office 2010 - excel specifically with 2 add ins for another application
    SAP GUI patch 0
    When the SAP GUI is then patched to 7 or 8 excel crashes with the following error :
    MS Visual Basic for Applications : License information for this components not found. You do not have an appropriate license to use this functionalty in design environment. > select OK and the following error appears -
    MS Visual Basic for Applications : Compile error in hidden module: ThisWorkbook. This error commonly occurs when code is incompatible with the verion, platform or architecture of this application. Click "Help: for information on how to correct this error.
    Excel then stops working. We have managed to disable the add ins and then excel works. Uninstalling the SAP GUI still leaves a broken excel. Any assistance in the resolution of this matter would be greatly appreciated. We have spent more than a week running various scenarios and patched windows and office to the latest patches with no success.
    Regards
    Anette

    Problem still exists after applying patch-10!!!!
    This way we can not use the 720-GUI.
    After installing GUI and latest patch, we still get following error starting Word2003:
    MS Visual Basic for Applications : License information for this components not found. You do not have an appropriate license to use this functionalty in design environment. > select OK and the following error appears -
    And.......
    Microsoft Visual Basic
    ActiveX-component cannot be created.

  • How to delete ADD-INS listing in the "Tools menu

    Hi
    I deleted a couple of "ADD-Ins" I didn't need anymore "CalcTax" and "cTax" 
    stored in this directory: "C:\Users\John\AppData\Roaming\Microsoft\AddIns"
    The mistake I made is that they where active and now I can't delete the two menu listed in the "Tools Menu".
    I tried to redo the Add-Ins but it doesn't work.
    I ran the "Remove Control macro" below but no success.
    I checked the Registry for the two Add-Ins but found nothing.
    Below is one of the two Add-Ins macro but not the original one. I deleted them.
    and "No Backup"
    Does anyone know how I can remove the two entries in the "Tools menu.                
    Option Explicit
    Const cTag = "CalcTax "
    Sub Auto_Open()
        RemoveControl
        With Application.CommandBars("Worksheet Menu Bar").Controls("Tools").Controls.Add
            .Caption = "CalcTax"
            .Tag = cTag
            .OnAction = ThisWorkbook.Name & "!CalcTax"
    End With
    End Sub
    Sub Auto_Close()
        RemoveControl
    End Sub
    Private Sub RemoveControl()
    On Error Resume Next
    Application.CommandBars.FindControl(Tag:=cTag).Delete
    End Sub
    Sub start()
    UserForm1.Show 0
    End Sub
    Cimjet

    Re:  Menubars/menus xl2003 and earlier
    To remove any item from the menus...
    Right-click in the menubar area and choose Customize (a dialog box is displayed).
    Drag the unwanted menu item off of the menu and drop it over the worksheet.
    Close the dialog box.
    Jim Cone
    Portland, Oregon USA
    free & commercial excel programs (n/a xl2013)
    https://jumpshare.com/b/O5FC6LaBQ6U3UPXjOmX2

  • How does one completely remove the Contribute add-in from Excel?

    This problem is driving me "buggy":
    Contribute CS5 installed its add-in toolbar in Excel (2010) on my Win7 (b4-bit) machine. I don't need or want it. Since it was listed as a COM add-in, I "removed" it using File>Options>Add-Ins>Manage COM Add-ins. It was removed from the list of installed add-ins (confirmed by a restart, i.e., no item, no check box), but it was not removed from Excel's Add-Ins list.
    I did some searching and found several fora in which it was suggested that renaming the files OfficePlugin.dll and OfficePluginRes.dll would solve the issue. I did, it did not.
    More searches yielded a suggestion to deinstall Contribute, which I did. That did not work either. Now I have neither Contribute nor its Excel toolbar components installed, yet its "carcass" remains "perched" on Excel's Add-Ins list like a dead parrot pining for the fjords...
    I searched this and other Adobe fora before posting this message, but I was unable to locate this exact issue.
    Has anyone encountered this and solved the issue?
    Thanks in advance!

    ADOBE SUCKS! - Why can't they make it simple for users to uninstall a plug-in that most users don't want or need, and simply find annoying.  This is a complete nuisance.  Does anyone at Adobe even care????  I'm fed up and pissed off and wish someone in their company would fix it.
    - pissed off.

  • Re: Essbase Add-in and Excel 2010

    I have a user who is getting the following error:
    Excel experienced a serious problem with the 'c:\oracle\middleware\epmsystem11r1\products\exceladdin\bin\essexcin.xll" add-in. . . .Do you want to disable this add-in?
    Do we need to reinstall the Essbase add-in ?
    I have had the user disable other add-ins via 'File > Options > Add-ins > Excel add-ins and that didn't resolve the problem.
    Are there any compatibility issues with 64 bit Excel?
    Also, after installing Essbase add-in, what are the items that should appear
    'File > Options > Add-ins > Excel add-ins
    Excel version : 2010
    Add-in version Essbase Spreadsheet add-in, Fusion Edition 11.1.2
    I would appreciate a quick response.
    My email id is < removed by moderator so that you don't get spammed for all Eternity >

    Also, after installing Essbase add-in, what are the items that should appear 
    'File > Options > Add-ins > Excel add-ins
    The user has the following items:
    Essexcin.
    In2Hyp Essbase ribbon.
    Oracle Essbase Query Designer Addin.
    The items which I have in 'File > Options > Add-ins > Excel add-ins is:
    In2Hyp Essbase Ribbon
    Oracle Essbase OLAP Server DLL (Non- Unicode)
    Oracle Essbase Query Designer Addin.
    Could you please kindly help me understand the difference?
    Do you recommend reinstalling the Essbase add-in ?
    Thank you very much for your help.

  • Hyperion 6.5 and Excel 2007

    Hello,
    I try to install Essbase 6.5 Add-In on my laptop.
    I currently work on Excel 2007.
    I only get a message error telling me : can't find any Office installation, install Office 97, 2000 or XP before.
    Do you know if Essbase 6.5 Add-in can be installed with Office 2007?
    Does someone knows any workaround?
    Thx and regards,
    Joseph

    Thx,
    I found a reply (gogole's my friend).
    I had to copy essxleqd.xla and essexcln.xll to C:\Hyperion\data\bin\ and browse the add-In from Excel.
    http://stewartbizint.wordpress.com/2008/07/29/essbase-excel-spreadsheet-add-in-for-newbies/
    Regards,
    Joseph

Maybe you are looking for

  • Query is not working in 8.1.6

    hi all, I created a query in 9.2 it is working proplerly but when i executed it on 8.1.6 it gives me (SELECT qo.option_text ERROR at line 3: ORA-00979: not a GROUP BY expression SELECT d.dealer_code, c.customer_id, TO_CHAR (cc.start_time, 'MMDDYY') A

  • Exs samples

    I'm trying to find all the samples for my exs instruments to transfer to a new computer - does anyone know where logic keeps them - they're not in any library folder.  many thanks!

  • Japanese fonts appear larger in Flash Player  10.0.42.34

    Hi We're experiencing a strange problem in a flash swf object embedded on an aspx page in a .net web application. Environment : Adobe Flash Player  :  10.0.42.34 Browesers : IE 6 , 7  Firefox 3.5 Client machine configuration :      Windows XP SP3    

  • Cropping pages and then printing 2 up per page.

    I have a PDF from Google books of a scanned in book with lots of white space in margins. The pages are small and portrait so I wish to print 2 per page on landscape A4. When I use the cropping tool I can reduce the white space to something like the o

  • Safari and Adobe Flash Player

    Safari keeps asking me to download Adobe Flash Player, I did download it but nothing happened. when I tried Google Chrome and it works. What is the problem here?