Text Function help

yessir

Board Regular
Joined
Jun 7, 2019
Messages
91
I need to use the Text functions to put the product IDs and prices in separate columns. And by using the text function to display product ID code in Column D and price in column E


B C D E

Product ID and PriceProduct IDPrice
xa1 304
za23 23
xa13 4123
zzx 12
a12q 374
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
1 way in D put =MID(B2,1,FIND(" ",B2,1)-1) assuming your row 2 is the start of the data line
Price would be =MID(B2,FIND(" ",B2,1)+1,99)*1


Hope that helps.
 
Upvote 0
How about
+Fluff New.xlsm
ABCDE
1Product ID and PriceProduct IDPrice
2xa1 304xa1304
3za23 23za2323
4xa13 4123xa134123
5zzx 12zzx12
6a12q 374a12q374
Roster
Cell Formulas
RangeFormula
D2:D6D2=LEFT(B2,FIND(" ",B2)-1)
E2:E6E2=RIGHT(B2,LEN(B2)-FIND(" ",B2))+0
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,782
Messages
6,121,532
Members
449,037
Latest member
tmmotairi

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