Extract text of variable length from string (fixed start position)

ajarle

New Member
Joined
Jun 6, 2012
Messages
13
I have cells where I would like to extract the number before the x and after the x in two different columns:

Viewport: 320x460
Viewport: 1370x670
Viewport: 1920x960
Viewport: 1920x980
Viewport: 1920x990
Viewport: 1370x640
Viewport: 1920x960
Viewport: 380x560

<colgroup><col style="width: 139px"></colgroup><tbody>
</tbody>

The numbers are are either three our four digits
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Hi.

If the "x" in question is always the only occurrence of that letter in the string:

First Number:

=-LOOKUP(1,-MID(A1,FIND("x",A1)-4,{1,2,3,4}))

Second Number:

=0+MID(A1,FIND("x",A1)+1,4)

Regards
 
Upvote 0
First number
=MID(A1,FIND(" ",A1)+1,FIND("x",A1)-FIND(" ",A1)-1)

Second number
=RIGHT(A1,LEN(A1)-FIND("x",A1))
 
Upvote 0
I am using Google sheets. I don't have the Lookup formula there

Hi.

If the "x" in question is always the only occurrence of that letter in the string:

First Number:

=-LOOKUP(1,-MID(A1,FIND("x",A1)-4,{1,2,3,4}))

Second Number:

=0+MID(A1,FIND("x",A1)+1,4)

Regards
 
Upvote 0
The second number works perfectly. Thank you!

I get a #Value error using this formula (semicolons are the Norwegian equivalent of commas):

=MID(B2;FIND(" ";B2)+1;FIND("x";B2)-FIND(" ";B2)-1)
 
Upvote 0

Forum statistics

Threads
1,223,888
Messages
6,175,219
Members
452,620
Latest member
dsubash

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top