In one cell of a csv file there are 5 sets of numbers separated by a space. I need a formula that can pull these numbers out and each given a cell

Ez00l

New Member
Joined
Jan 21, 2022
Messages
4
Office Version
  1. 365
Platform
  1. Windows
In one cell of a .csv file there are 5 sets of numbers separated by a space between each number. Each number is 2 characters. I need a formula that can pull these numbers out and each given its own cell. After that, I will need to get counting of times each number is in that column. Ultimately, I will use this information as a prefixes in another spread sheet.


1643147948138.png



Thank you in advance for any advice or suggestions given!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Hi,

Use C2 formula, result is Text for cases where there may be leading 0 you want to preserve.
OR use C3 formula, result is converted to Real Numbers.

Book3.xlsx
ABCDEFG
1
210 22 08 92 88 1022089288
311 22 08 92 88 112289288
Sheet958
Cell Formulas
RangeFormula
C2:G2C2=TRIM(MID(SUBSTITUTE(" "&$B2," ",REPT(" ",100)),COLUMNS($C2:C2)*100,100))
C3:G3C3=MID(SUBSTITUTE(" "&$B3," ",REPT(" ",100)),COLUMNS($C3:C3)*100,100)+0
 
Upvote 0

Forum statistics

Threads
1,214,948
Messages
6,122,420
Members
449,083
Latest member
Ava19

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