Skip to content

Instantly share code, notes, and snippets.

@WebRTCGame
Last active July 22, 2019 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WebRTCGame/e1297ab2249a7d3a0a06dfebd1e7221c to your computer and use it in GitHub Desktop.
Save WebRTCGame/e1297ab2249a7d3a0a06dfebd1e7221c to your computer and use it in GitHub Desktop.
Calculates the volume of a sphere.
name: Basic custom function
description: Calculates the volume of a sphere.
host: EXCEL
api_set: {}
script:
content: |
/**
* Calculates the volume of a sphere.
* @customfunction
* @param {number} radius
* @returns The volume of the sphere.
*/
function sphereVolume(radius) {
return (Math.pow(radius, 3) * 4 * Math.PI) / 3;
}
language: typescript
libraries: |
https://appsforoffice.microsoft.com/lib/1/hosted/office.js
@types/office-js
core-js@2.4.1/client/core.min.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment