0

I need to extract the central number in the string below using an excel formula

Min { {r4} , {r7} , {r10}}<={r3}<= Max {{r4} , {r7} , {r10}}

here it would be 3. The string is dynamic e.g:

Min { {r4011} , {r4012}}<={r4010}<= Max {{r4011} , {r4012}}

Needs to be catered for also (here i need 4010)

2
  • I'm trying combinations of FIND, LEN, RIGHT, but just not getting it so far. Commented May 17, 2016 at 10:39
  • Formatted Formulas Commented May 17, 2016 at 11:09

1 Answer 1

1

This seems to work

=MID(D1755,FIND("<=",D1755,1)+4,FIND("}<= Max",D1755,1) - (FIND("<=",D1755,1)+4))

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.