Offset Function Help

Guzzlr

Well-known Member
Joined
Apr 20, 2009
Messages
982
Office Version
  1. 2021
Platform
  1. Windows
Hello All...
In cell D13, I have: "224 Robbins & Painted Bunting"

I wish to separate the statement of: "Robbins & Painted Bunting" in cell D14, and keep the number 224 by itself in D13.

Is this possible with the Offset function?

Thanks for the help
excel 2013
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
in d14 put =left(d13,3)

What if, the number of "224" is instead a single digit, or the next row of 5 digits. How would I have the left formula to pick up the digits, regardless of the number length?
Thanks
 
Upvote 0
Try
=LEFT(D13,FIND(" ",D13)-1)
=MID(D13,FIND(" ",D13)+1,999)
 
Upvote 0
Try
=LEFT(D13,FIND(" ",D13)-1)
=MID(D13,FIND(" ",D13)+1,999)

That second (highlighted) formula could also be replaced (no pun intended) with this one...

=REPLACE(D13,1,FIND(" ",D13),"")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

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