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: TEXTBETWEEN | |
| Description: Returns text between delimiters. | |
| - Standardized to native TEXTAFTER/BEFORE syntax. | |
| - Supports Multi-input: Text (Rows) x Delimiters (Columns). | |
| - Strict Mode: Assumes equal number of start/end delimiters. | |
| Made By: Medohh2120 | |
| */ | |
| TEXTBETWEEN = LAMBDA(text, start_delim, end_delim, [instance_start], [instance_end], [case_sensitive_start], [case_sensitive_end], [match_end_start], [match_end_end], [if_not_found], |
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: UNPIVOT_PLUS | |
| Description: Given a Table or a range with headers, unpivots all columns (all or nothing) | |
| optionally support 2 headers. | |
| optionally removing Grid blank entries. | |
| optionally removing Grid errors. | |
| Made By: Medohh2120 | |
| */ | |
| UNPIVOT_PLUS=LAMBDA(Table, [Hdr_name], [Has2Hdrs], [TopHdr_name], [value_name], [Remove_blanks], [Remove_errors], |