Yes but want to check the top part with Excel 2007 and later Add-in files.
Here you go.
Yes but want to check the top part with Excel 2007 and later Add-in files.
print Application.StartupPath
C:\Users\smozgur\AppData\Roaming\Microsoft\Excel\XLSTART
C:\Program Files\Microsoft Office\root\Office16\XLSTART
Ok - this solution comes from @MrExcel. He thinks this is an amazing way to solve this issue, actually I tried and it works amazing. Let's see if it will solve @PA_VA13's problem as well. Then we can officially share the info in the XL2BB instructions.
- First, uninstall the XL2BB add-in please. We don't want duplicate versions. You can find uninstallation steps in XL2BB page.
- Launch Excel, go to VBA (Alt F11) and Debug / Immediate window (Ctrl + G). Copy and paste the following in the debug window and hit Enter.
The code will print the famous XLSTART folder of Excel which is the path that whatever we put in it, Excel will open that file. It is one of the most trusted folder for Office.VBA Code:print Application.StartupPath
In my computer, I got this - (this should be user specific folder):
C:\Users\smozgur\AppData\Roaming\Microsoft\Excel\XLSTART
- There is another folder for "all" users in this computer:
C:\Program Files\Microsoft Office\root\Office16\XLSTART
- To make it simple and safe, just use what Excel says with Application.StartupPath as I explained above.
- Quit Excel.
- Go to XLSTART folder and copy and paste the add-in file (xl2bb.xlam) here. Make sure that you already unblocked the add-in file if necessary (Right click on the xlam file and Unblock button at the bottom of the properties window) . Now launch Excel and it should work without problems.
Please let us know the result.
@PA_VA13 I think what smozgur has posted is a get around when there are issues as mine is in the Addin folder, it is worth a try.
You will have to do a browse for it in your Excel Options - Addins - Excel Addins. Don't use the old XL2BB which will already be there.
So I must of done something wrong because when I followed the steps it opened the same AddIns folder (C:\Users\vhaannprewr\AppData\Roaming\Microsoft\AddIns) instead of the XLSTART one.