Hello,
This question is related to the FIND or SEARCH functions, but both of these functions return the position of only the first occurrence of the specified character(s) in a string. But how can I get a spill of all positions if the specific character occurs more than once?
For example, in the attached XL2BB blow, how can I get the positions of all the commas in spill outputs? (I mean a separate spill for each of the examples)
Thanks for any input!
This question is related to the FIND or SEARCH functions, but both of these functions return the position of only the first occurrence of the specified character(s) in a string. But how can I get a spill of all positions if the specific character occurs more than once?
For example, in the attached XL2BB blow, how can I get the positions of all the commas in spill outputs? (I mean a separate spill for each of the examples)
Cell Formulas | ||
---|---|---|
Range | Formula | |
B1:B3 | B1 | =FIND(",",A1) |
C1:C3 | C1 | =SEARCH(",",A1) |
Thanks for any input!