SOLVED

How do I extract multiple values from a cell in Excel

Copper Contributor

Hi
I hoop somebody can help me. I want to extract 4 values from a cell in Excel. The desired return should bel like :
Cell A1 contains: BVG;Berlin;MOTO;2125
Desired reusult:
Cell B1 = BVG
Cell C1= Berlin
Cell D1=MOTO
Cell E1= 2125

 




4 Replies
best response confirmed by Hans Vogelaar (MVP)
Solution

Hi @Adilco 

 

there are several option. One would be "Text to Columns"

Martin_Weiss_0-1663828880086.png

Step 1:

Martin_Weiss_1-1663828918233.png

 

Step 2:

Martin_Weiss_2-1663828944722.png

Step 3:

Martin_Weiss_3-1663828986542.png

Martin_Weiss_4-1663829010728.png

 

If you use Microsoft 365 with the latest updates, you could also use the brandnew TEXTSPLIT function:

Martin_Weiss_5-1663829074446.png

Just enter the formula in cell B1, it will spill automatically to the other cells 

 

@Adilco Use TEXTSPLIT() function.

=TEXTSPLIT(A1,";")

Harun24HR_0-1663830972528.png

 

@Martin_Weiss .
Thank you. It worked!

Thank you. It worked!
1 best response

Accepted Solutions
best response confirmed by Hans Vogelaar (MVP)
Solution

Hi @Adilco 

 

there are several option. One would be "Text to Columns"

Martin_Weiss_0-1663828880086.png

Step 1:

Martin_Weiss_1-1663828918233.png

 

Step 2:

Martin_Weiss_2-1663828944722.png

Step 3:

Martin_Weiss_3-1663828986542.png

Martin_Weiss_4-1663829010728.png

 

If you use Microsoft 365 with the latest updates, you could also use the brandnew TEXTSPLIT function:

Martin_Weiss_5-1663829074446.png

Just enter the formula in cell B1, it will spill automatically to the other cells 

 

View solution in original post