-
Notifications
You must be signed in to change notification settings - Fork 0
Error help
Here is some common errors we found using the Excel Plugin.
Please check Latest Logfile (link in Settingsmenu) to find more details about error.
MS now always block all xll files to prevent malwares.
You need to open the file property and unblock after download new versions.
https://support.microsoft.com/sv-se/topic/excel-blockerar-inte-betrodda-xll-till%C3%A4gg-som-standard-1e3752e2-1177-4444-a807-7b700266a6fb
-
Error message on startup excel, that file is corrupt.
This can happen if you select the .xll file directly inside the Zip file.
The .xll inside the Zip file is a compressed file and will not work.
You need to UnZip to a new folder and then select the .xll file. -
Did you pick the correct .xll version? Is your Excel 32bit or 64bit? (Not always same as windows version)
https://github.com/Borsdata-Sweden/ExcelPlugin/wiki/Installation#is-my-excel-32bit-or-64bit -
Try install the latest .Net version. Excel Plugin need .Net to work.
https://dotnet.microsoft.com/download/dotnet-framework -
Double check filepath to .xll file. Do you have correct file selected in excel?
Excel have some security issues with .xll files.
Excel can unload or block .xll files if excel decide its not safe.
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. (See below)
-
Check that Plugin has not been disabled.
Go to Add-Ins list and check that "Börsdata Excel" is checked.
https://github.com/Borsdata-Sweden/ExcelPlugin/wiki/Installation#installation-step-by-step
(Step 7) -
Check if File OR Folder is Locked or Write protected.
Right click on .xll file and select 'properties'.
If its Locked - then Excel can not load .xll file.
-
Try reinstall Excel Plugin to a new folder on your computer.
-
Try add Excelplugin to a folder Outside Dropbox or OneDrive.
This folders is synced and changed automaticly. This can cause problems.
Make sure that Add-ins => Require ApplicationsAdd-ins to be signed by Trusted Publisher is DISABLED.
Excel have some security issues with .xll files.
This tells excel that the .xll folder is safe to use.
- Excel Options (Alternativ)
- Securitycenter (Säkerhetscenter) ->
Settings for securitycenter
- Trusted Locations->
Add new Location
- Browse.. -> Select the folder where you have the .xll files
- Done
- Now Try reinstall .xll file with Add-ons menu.
-
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.
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() 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).
NEVER use =NOW() inside the =BD_ function. Always reference from ouside cell.
Not working = BD_STOCKPRICE(97;NOW()-10;NOW())
Working = BD_STOCKPRICE(97;B1;B2)
Move =NOW() formula to B1 and B2
-
Check Trusted Location
-
Make sure that Add-ins => Require ApplicationsAdd-ins to be signed by Trusted Publisher is DISABLED.
Make sure it's Not Checked.
https://www.youtube.com/watch?v=5MVbR4pKAbU
Warning Advanced!
-
Open Regedit
-
Go to latest version of Excel in Registry
- Dator\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office(LASTEST VERSION)\Excel\Options
- Dator\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office(LASTEST VERSION)\Excel\Add-in Manager
-
Check if there is any Data that points to Borsdata plugin path. If there is data then delete this value. (Right click -> delete)
-
Restart Excel
Home
Installation
=BD_INSTRUMENTS()
=BD_DESCRIPTION(InstId)
=BD_INSTRUMENTS_GLOBAL()
=BD_INSTRUMENTSEARCH()
=BD_KPI_SUMMARY()
=BD_STOCKPRICE()
=BD_STOCKPRICE_DATE()
=BD_STOCKPRICE_GLOBAL_DATE()
=BD_STOCKPRICE_LAST()
=BD_STOCKPRICE_GLOBAL_LAST()
=BD_REPORT_QUARTER()
=BD_REPORT_R12()
=BD_REPORT_YEAR()
=BD_HISTORY_KPI()
=BD_SCREENER_KPI()
=BD_SCREENER_GLOBAL_KPI()
=BD_REPORT_CALENDAR(InstId)
=BD_DIVIDEND_CALENDAR(InstId)
=BD_HOLDINGS_INSIDER(InstId)
=BD_HOLDINGS_SHORTS()
=BD_HOLDINGS_BUYBACK(InstId)