kalim42

New Member
Joined
Sep 24, 2018
Messages
6
I need to import bank statements and convert to excel, but in the conversion process in excel I get 2 or 3 columns for each line. In order to keep the records complete I need to merge all columns.
There is way or formula that I can use to merge all the columns?
Thanks in advance.
Nick
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hello :) and welcome to MrExcel forum :)
do not merge, just select data n use TEXTtoCOLUMNS option :)
 
Upvote 0
Hello :) and welcome to MrExcel forum :)
do not merge, just select data n use TEXTtoCOLUMNS option :)

I'm A little dumb in excel, how I can do the text to column? I can create an example to ilustrate what I'm looking to do
 
Upvote 0
another option would be to select the cells involved
rclick and select format cells
select Alignment tab in the popup window
in the horizontal dropdown box, select "center across selection"
Ok

As already mentioned.....do not use merged cells....it's one thing that should never have been allowed to be in Excel
 
Upvote 0
another option would be to select the cells involved
rclick and select format cells
select Alignment tab in the popup window
in the horizontal dropdown box, select "center across selection"
Ok

As already mentioned.....do not use merged cells....it's one thing that should never have been allowed to be in Excel

thanks Michael M, this is an example in this case text in column C need to be along with text in column B
Column A Column B Column C Column D

08/10Card Purchase08/10 Igt 1.00
08/13Card Purchase08/10 Interglass 1.00
08/16Card Purchase With Pin 08/16 The Home Depot 1.00
08/16Card Purchase With Pin 08/16 Lowe's 1.00
08/17Card Purchase08/17 Igt 1.00

<colgroup><col><col><col><col><col></colgroup><tbody>
</tbody>
In this case I can do what you suggested me before?
Thanks in advance

Nick
 
Upvote 0
Hello :)
right click on column B header, click on Insert, then in cell B1 use this formula
Code:
=CONCATENATE(C1,D1)
press enter n then 1) drag down the + sign on bottom right corner of cell B1 OR 2) double click on that plus sign..... then right click on column header of column C and delete it, and similarly delete column D
 
Last edited:
Upvote 0
Hello :)
right click on column B header, click on Insert, then in cell B1 use this formula
Code:
=CONCATENATE(C1,D1)
press enter n then 1) drag down the + sign on bottom right corner of cell B1 OR 2) double click on that plus sign..... then right click on column header of column C and delete it, and similarly delete column D

Hi r1998

It doesn't work, see below, cell doesn't concatenate and the formula is dragged to subsequent cells

08/02=CONCATENATE (C5:D5)
08/02=CONCATENATE (C5:D5)
08/03=CONCATENATE (C5:D5)
08/06=CONCATENATE (C5:D5)
08/06=CONCATENATE (C5:D5)
08/06=CONCATENATE (C5:D5)

<colgroup><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
deleting column C and D will give error in Column B :(
you will have to select and copy the contents of column B, then click on an empty column, say column F, so right click on cell f1, then click on Paste Special n click on values
n then copy and paste that data in column B n then delete column c and d
 
Upvote 0
it must be
Code:
[COLOR=#333333]=CONCATENATE (C5,D5)[/COLOR]
:(

Sorry r1998, I did with "," but looks that the program with which I convert from PDF to excel some restrictions, now I copied some cells in a new workbook, entered your formula, and it works.
From the new workbook I copied the concatenates cells, went back to the original, paste the formula, and it works, now I need to see which is the restrictions of that convert from PDF to excel program
Thank you

Nick
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,750
Members
448,989
Latest member
mariah3

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