OfficeDev/Excel-Custom-Functions

Name: Excel-Custom-Functions

Owner: Office Developer

Description: Learn about custom functions in Excel.

Created: 2017-11-01 23:03:37.0

Updated: 2018-05-23 20:30:23.0

Pushed: 2018-05-06 18:52:15.0

Homepage: null

Size: 38

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Custom functions in Excel (Preview)

Custom functions (similar to user-defined functions, or UDFs) are JavaScript functions that you can add to Excel. This sample accompanies the Custom Functions Overview topic.

Table of Contents
Change History
Prerequisites
To use the project

Follow these instructions to use this custom function sample add-in:

  1. Publish the code files (HTML, JS, and JSON) to localhost.
  2. Replace http://127.0.0.1:8080 in the manifest file (there are 4 occurrences) with the URL you used, if needed (you might be using a different port number).
  3. Sideload the manifest using the instructions found at https://aka.ms/sideload-addins.
  4. Test a custom function by entering =CONTOSO.ADD42 in a cell.
  5. Try the other functions in the sample: =CONTOSO.ADD42ASYNC, CONTOSO.ISPRIME, CONTOSO.NTHPRIME, CONTOSO.GETDAY, CONTOSO.INCREMENTVALUE, and CONTOSO.SECONDHIGHEST.
  6. Follow @OfficeDev on Twitter for updates, post suggestions to the Excel Add-ins UserVoice page and tag Stack Overflow questions with the custom-functions-excel tag.
Making changes

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.

Debugging

Debugging is only available for asynchronous functions on Excel for Windows currently. To debug:

  1. Enable script debugging in Internet Explorer (IE > Options > Advanced).
  2. Trigger an asynchronous function in Excel (like CONTOSO.ADD42ASYNC). This step ensures that the asynchronous function process is loaded invisibly and ready for debugging.
  3. Attach a debugger to the hidden iexplore.exe script process (you could use the Windows F12 debugger or Visual Studio).
Intellisense for the JSON file in Visual Studio Code

For intellisense to help you edit the JSON file, follow these steps:

  1. Open the JSON file (it has a .json extension) in Visual Studio Code.

  2. 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", 
    
  3. 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.

Feedback

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].

Additional resources

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

Copyright (c) 2017 Microsoft Corporation. All rights reserved.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.