Apr 17 2023 03:24 PM
Referring to the document linked here, you will see in column D, there is a formula successfully pulling which Truck # is mentioned in column B. However, it stops after the first Truck mentioned, even though sometimes there may be multiple Truck #s (row 7 for example). Can someone please tell me what formula I would need to have all Truck #s pulled out in separate cells?
Apr 17 2023 04:04 PM
Solution=LET(
a,TEXTSPLIT(B2,,", "),
b,ISNUMBER(SEARCH("Truck",a)),
c,FILTER(a,b),
d,SUBSTITUTE(c," Crew",""),
TRANSPOSE(d))
Apr 17 2023 04:25 PM