Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
custom-functions-sandbox
Advanced tools
Learn how to use custom functions in Excel (similar to user-defined functions, or UDFs). Custom functions are JavaScript functions that you can add to Excel, and then use them like any native Excel function (for example =Sum). This sample accompanies the
Learn how to use custom functions in Excel (similar to user-defined functions, or UDFs). Custom functions are JavaScript functions that you can add to Excel, and then use them like any native Excel function (for example =Sum). This sample accompanies the Custom Functions Overview topic.
On a machine with a valid instance of an Excel Insider build installed, follow these instructions to use this custom function sample add-in:
npm run start
to start a localhost server instance.npm run sideload
to launch Excel and load the custom functions add-in. Additonal information on sideloading can be found at https://aka.ms/sideload-addins.=CONTOSO.ADD(num1, num2)
in a cell.=CONTOSO.ADDASYNC(num1, num2)
, CONTOSO.INCREMENTVALUE(increment)
.If you make changes to the sample functions code (in the JS file), close and reopen Excel to test them.
If you change the functions metadata (in the JSON file), close Excel and delete your cache folder Users/<user>/AppData/Local/Microsoft/Office/16.0/Wef/CustomFunctions
. Then re-insert the add-in using Insert > My Add-ins.
Currently, the best method for debugging Excel custom functions is to first sideload your add-in within Excel Online. Then you can debug your custom functions by using the F12 debugging tool native to your browser. Use console.log
statements within your custom functions code to send output to the console in real time.
If your add-in fails to register, verify that SSL certificates are correctly configured for the web server that's hosting your add-in application.
If you are testing your add-in in Office 2016 desktop you can enable runtime logging to debug issues with your add-in's XML manifest file as well as several installation and runtime conditions.
For intelliSense to help you edit the JSON file, follow these steps:
Open the JSON file (it has a .json extension) in Visual Studio Code.
If you are starting a new file from scratch, add the following to the top of the file:
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/office-js/custom-functions.schema.json",
Press Ctrl+Space and intelliSense will prompt you with a list of all items that are valid at the cursor point. For example, if you pressed Ctrl+Space immediately after the "$schema"
line, you are prompted to enter functions
, which is the only key that is valid at that point. Select it and the "functions": []
array is entered. If the cursor is between the []
, then you are prompted to enter an empty object as a member of the array. If the cursor is in the object, then you are prompted with a list of the keys that are valid in the object.
We'd love to get your feedback about this sample. You can send your feedback to us in the Issues section of this repository.
Questions about Microsoft Office 365 development in general should be posted to Stack Overflow. If your question is about the Office JavaScript APIs, make sure that your questions are tagged with [office-js] and [API].
This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Copyright (c) 2017 Microsoft Corporation. All rights reserved.
FAQs
Learn how to use custom functions in Excel (similar to user-defined functions, or UDFs). Custom functions are JavaScript functions that you can add to Excel, and then use them like any native Excel function (for example =Sum). This sample accompanies the
The npm package custom-functions-sandbox receives a total of 0 weekly downloads. As such, custom-functions-sandbox popularity was classified as not popular.
We found that custom-functions-sandbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.