Forum Discussion
SergeiBaklan
Dec 17, 2019Diamond Contributor
Re: FIND AND COPY
That could be several variants, but the main point base on which logic to extract the number. My assumption was the qty is the number at the end of the text separated from it by space. Doesn't matter which text is before. We may wrap formula by IFERROR() for the case when there is no number at the end and return zero in such case:
as
=IFERROR(--RIGHT(A1,LEN(A1)-LOOKUP(2^10,SEARCH(" ",A1,ROW(INDIRECT("1:"&LEN(A1)))))),0)
For the same logic it could be other variants of formula, but for another logic it definitely shall be another formula.
No RepliesBe the first to reply