I am trying to extract the third table entries such as
salesDes = "Sold to 1234567, products ordered XX4567 " or
salesDes = "Sold to 456" or
salesDes = "Sold to 54321,none delivered" etc
I need the number 1234567, 456, 54321. It is followed by a space or a comma
Found a reference to this problem with the following formula.
replace(Split(salesDes," ")[3], ",","")
More is needed because it expects an array, but what?
salesDes = "Sold to 1234567, products ordered XX4567 " or
salesDes = "Sold to 456" or
salesDes = "Sold to 54321,none delivered" etc
I need the number 1234567, 456, 54321. It is followed by a space or a comma
Found a reference to this problem with the following formula.
replace(Split(salesDes," ")[3], ",","")
More is needed because it expects an array, but what?