Created
July 14, 2020 22:05
-
-
Save johnaweiss/0861852d76cf577c37be4b3c626d5ab9 to your computer and use it in GitHub Desktop.
Create a new snippet from a blank template.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: jw-sht | |
description: Create a new snippet from a blank template. | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
/** @CustomFunction */ | |
/* Return 0-based index of last instance of search-string in text-string */ | |
function FindRev(text, search) { | |
var n = text.lastIndexOf(search); | |
return n; | |
} | |
language: typescript | |
libraries: | | |
https://appsforoffice.microsoft.com/lib/1/hosted/office.js | |
@types/office-js | |
[email protected]/dist/css/fabric.min.css | |
[email protected]/dist/css/fabric.components.min.css | |
[email protected]/client/core.min.js | |
@types/core-js | |
[email protected] | |
@types/[email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Worksheet function for Excel 365 online. Not tested on desktop.