Cell lookup to point in cell

Digi

New Member
Joined
Jun 29, 2011
Messages
3
Good day Guys and Girls,

I find myself in need of a little help if you'd be so kind.

I suspect it probably requires a query thats as long as hell, BUT, what I want to do in a excell worksheet (mainly because im getting tired of guessing) is for example

CELL A1 = DBMSSQL.DOMAINA.COM

in cell B2 i want to have
B2 = DBMSSQL

the formula without something like =LEFT(A2,7) i would like it to search for the . and do the left till there.

Thanks in advance for any help you guys can give me here.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Good day Guys and Girls,

I find myself in need of a little help if you'd be so kind.

I suspect it probably requires a query thats as long as hell, BUT, what I want to do in a excell worksheet (mainly because im getting tired of guessing) is for example

CELL A1 = DBMSSQL.DOMAINA.COM

in cell B2 i want to have
B2 = DBMSSQL

the formula without something like =LEFT(A2,7) i would like it to search for the . and do the left till there.

Thanks in advance for any help you guys can give me here.

Try...

=LEFT(A1,FIND(".",A1)-1)
 
Upvote 0
OMW your joking.

well shows you when you try think way to much you miss the simple answers.

Thanks Aladin, most appreciated.
 
Upvote 0
Cell lookup to point in cell [RESOLVED]

Just a note for anyone that looks for something like this.

this methode will work for just about anything.

=MID(A1,FIND("(",A1)+1,FIND(")",A1)-2)

Example (A1 has values, B1 has formula)
A1 = (10.0.0.1)
B1 = 10.0.0.1

the Right will be the same.

New Motto for Life
K.I.S.S. = KEEP.IT.SIMPLE.STUPID.
 
Upvote 0

Forum statistics

Threads
1,224,602
Messages
6,179,847
Members
452,948
Latest member
UsmanAli786

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