Skip to content

Error help

Henrik edited this page Apr 22, 2021 · 37 revisions

Error page

Here is some common errors we found using the Excel Plugin.
Please check Latest Logfile (link in Settingsmenu) to find more details about error.

Excel Plugin installation error

Excel Plugin worked and then stopped working?

After each point restart Excel to check if .xll file loads ok.
Important to restart excel.

Add the .xll file folder to 'Trusted Locations' in Excel.

  1. Excel Options (Alternativ)
  2. Securitycenter (Säkerhetscenter) -> Settings for securitycenter
  3. Trusted Locations-> Add new Location
  4. Browse.. -> Select the folder
    Done

Trust Location 1 Trust Location 2 Trust Location 3

  • Try reinstall Excel Plugin to a new folder on your computer.

Excel shows error in Formula

  • Please check latest Logfile (link in Settingsmenu) to find more details about error.

  • Is API KEY valid? Double check APIKEY on Borsdata MyPage.

  • Can you call API? Maybe antivirus, firewall is blocking API call? Try past this into you webbrowser.
    https://apiservice.borsdata.se/v1/instruments?authKey=APIKEY
    Replace [APIKEY] with your key.
    If you get back alot of json data {"instruments":[{"insId":2,"name":"AAK", }... then API Call is OK.
    If not then you need to find what is blocking.

Excel frezze/hangs when loading API data.

This may be caused by a circular reference.
Two cells is updating and trigger API calls to loop forever.
https://www.ablebits.com/office-addins-blog/2015/12/15/circular-reference-excel/

Try check logfile and see if you find alot if API calls that is the same.
Probably there is hundreds of same calls if you have a circular reference. This repeted function is a circular reference and you need to fix this.

Now() hangs Excel?

=Now() is a versile excel function that always trigger new calulation because of the time changes.
Use =Today() function instead to only get Date (without time).

Clone this wiki locally