extract data from one column to another column

lakody

New Member
Joined
Apr 5, 2016
Messages
3
Hi all,In first column i have :
12-dec-16

<tbody>
</tbody>
NL86RABertert4534

<tbody>
</tbody>
BV NAT. PUBLICITEITSBUR.

<tbody>
</tbody>
NL86 34534534534

<tbody>
</tbody>
-240,44

<tbody>
</tbody>
9-dec-16

<tbody>
</tbody>
NL63ABNrtyrtyrty

<tbody>
</tbody>
FAMED BV

<tbody>
</tbody>
Nlrtyrtyrtyr

<tbody>
</tbody>
2854,23

<tbody>
</tbody>
7-dec-16

<tbody>
</tbody>
273 Lidl

<tbody>
</tbody>
-15,28

<tbody>
</tbody>
5-dec-16

<tbody>
</tbody>
NL63ABN

<tbody>
</tbody>
FAMED BV

<tbody>
</tbody>
NL63 ABN

<tbody>
</tbody>
3297,89

<tbody>
</tbody>
1-dec-16

<tbody>
</tbody>
NL25A

<tbody>
</tbody>
P VAA DERY EIJKER

<tbody>
</tbody>
NL25 A

<tbody>
</tbody>
-1323,5

<tbody>
</tbody>
30-nov-16

<tbody>
</tbody>
NL50A

<tbody>
</tbody>

<tbody>
</tbody>
MEEUSD RADEUREN
-269,89

<tbody>
</tbody>
...

<tbody>
</tbody>
I would like to extract like this:
12-dec-16

<tbody>
</tbody>
NL86RABertert4534

<tbody>
</tbody>
BV NAT. PUBLICITEITSBUR.

<tbody>
</tbody>
NL86 34534534534

<tbody>
</tbody>
-240,44

<tbody>
</tbody>
9-dec-16

<tbody>
</tbody>
NL63ABNrtyrtyrty

<tbody>
</tbody>
FAMED BV

<tbody>
</tbody>
Nlrtyrtyrtyr

<tbody>
</tbody>
2854,23

<tbody>
</tbody>

<tbody>
</tbody>
7-dec-16

<tbody>
</tbody>
273 Lidl

<tbody>
</tbody>
-15,28

<tbody>
</tbody>
5-dec-16

<tbody>
</tbody>
NL63ABN

<tbody>
</tbody>
FAMED BV

<tbody>
</tbody>
NL63 ABN

<tbody>
</tbody>
3297,89

<tbody>
</tbody>
1-dec-16

<tbody>
</tbody>
NL25A

<tbody>
</tbody>
P VAA DERY EIJKER

<tbody>
</tbody>
NL25 A

<tbody>
</tbody>
-1323,5

<tbody>
</tbody>
30-nov-16

<tbody>
</tbody>
NL50A

<tbody>
</tbody>
MEEUSD RADEUREN

<tbody>
</tbody>
-269,89

<tbody>
</tbody>

<tbody>
</tbody>
thanks a lot, Mehdi
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Try the below formula in cell B1 and drag down and over

Code:
=IF(ISBLANK(INDIRECT("A"&(COLUMNS($B$1:B1)+(ROWS($B$1:B1)*5-5)))),"",INDIRECT("A"&(COLUMNS($B$1:B1)+(ROWS($B$1:B1)*5-5))))
 
Upvote 0
Try the below formula in cell B1 and drag down and over

Code:
=IF(ISBLANK(INDIRECT("A"&(COLUMNS($B$1:B1)+(ROWS($B$1:B1)*5-5)))),"",INDIRECT("A"&(COLUMNS($B$1:B1)+(ROWS($B$1:B1)*5-5))))
Thank you,extraction from the first 2 rows is perfect but from 3th row is not.
 
Upvote 0
I see. Yeah, sorry, I won't be able to help you with that situation.
 
Upvote 0

Forum statistics

Threads
1,214,923
Messages
6,122,289
Members
449,077
Latest member
Rkmenon

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