radonwilson
Board Regular
- Joined
- Jun 23, 2021
- Messages
- 50
- Office Version
- 2019
- Platform
- Windows
1. How to get the positions of the first text char in a mixed string?
2. How to use these splitter functions with Text.Split() . I want to split the text and keep that in a list in Custom Column.
For Example, if there is a word "Sweet" I want to split it by the number of characters as 1 and keep that in a list {S,w,e,e,t}
Master_Order_Report.xlsx | ||||
---|---|---|---|---|
A | B | |||
7 | Files Names | Output (position of first text char) | ||
8 | 1112. Orders | 6 | ||
9 | 2451 2 . Refunds | 9 | ||
10 | #784&@ . Cancellation | 9 | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B8 | B8 | =SEARCH("O",A8)-1 |
B9 | B9 | =SEARCH("R",A9)-1 |
B10 | B10 | =SEARCH("C",A10)-1 |
2. How to use these splitter functions with Text.Split() . I want to split the text and keep that in a list in Custom Column.
For Example, if there is a word "Sweet" I want to split it by the number of characters as 1 and keep that in a list {S,w,e,e,t}