Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lordthorzonus/excel-library
Collection of useful Excel udfs and macros
https://github.com/lordthorzonus/excel-library
Last synced: about 2 months ago
JSON representation
Collection of useful Excel udfs and macros
- Host: GitHub
- URL: https://github.com/lordthorzonus/excel-library
- Owner: lordthorzonus
- License: mit
- Created: 2015-06-24T07:36:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-05T12:01:10.000Z (over 8 years ago)
- Last Synced: 2023-08-07T06:42:52.816Z (over 1 year ago)
- Language: Visual Basic
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Excel-library
Collection of useful Excel udfs and macrosUser defined functions that are included:
* __REVERSE__ - Function for reversing the content of a cell based on text and delimiter
`=REVERSE(text, delimiter)`* __EXPLODE__ - Exploding function for excel. Returns the specified item of the exploded string. 0 based count
`=EXPLODE(text, delimiter, itemNumber)`* __ISFONTCOLOR__ - Function for checking the font color of the cell
`=ISFONTCOLOR(targetRange, red, green, blue)`* __ASDISPLAYED__ - Useful helper function to show contents of the cell as is. Can be used for example for concatenating dates
`=ASDISPLAYED(targetCell)`* __LISTLENGTH__ - Returns the number of items in the list based on delimiter
`=LISTLENGTH(text, delimiter)`* __ISVALIDEMAIL__ - Helper function for checking validity of email addresses
`=ISVALIDEMAIL(email)`* __RGBTOHEX__ - Converts given rgb value to HEX color
`=RGBTOHEX(red, green, blue)`* __HEXTORGB__ - Converts HEX color to RGB also accepts html colors with #
`=HEXTORGB(hex)`