Extract text and numbers

1 - How to extract all text values and ignore number? say Product 154Z, product name 325 SC, product new name S41V etc

2 - Find the position of the first number in a text ?

Solved Solved
0 14 2,374
1 ACCEPTED SOLUTION

@Jeremy_F You can try thin one:

LEFT("product name 753VS",
ANY(SORT(LIST(
FIND("0","product name 753VS"),
FIND("1","product name 753VS"),
FIND("2","product name 753VS"),
FIND("3","product name 753VS"),
FIND("4","product name 753VS"),
FIND("5","product name 753VS"),
FIND("6","product name 753VS"),
FIND("7","product name 753VS"),
FIND("8","product name 753VS"),
FIND("9","product name 753VS"))
- LIST("0")))-1)
  • LIST(FIND()): Find the position of numbers 0 to 9, and create a LIST of those positions.
  • -LIST(โ€œ0โ€): Delete all Zeros from that LIST.
  • SORT: Order this LIST from 1to9.
  • ANY: Take the first number.
  • LEFT(โ€œproduct name 753VSโ€, โ€œPositionโ€ - 1): Decrease the Position -1

View solution in original post

14 REPLIES 14
Top Labels in this Space