Power Query - Merge columns if there is more than 1 column

sara121

New Member
Joined
Jul 7, 2022
Messages
23
Office Version
  1. 365
Platform
  1. Windows
Hi Friends,

I got stuck in this for days.
I have to convert the PDF file by page. As I transformed the page, the columns for the table are not preditable.
As seen from the example here below,
1) the debit value does not line up under the column header "DEBIT", instead, it appears under a new column. This new column header can be "Column 7" for this file. In the next PDF file, this may show under Column6.

2) on the DEBIT side, the header and value line up properly in this example. when open another file, it may have extra blank column displayed between the CREDIT and DATE column.

Is there way to Merge the columns if there is more than 1 coloumn shown before DATE column else do nothing?

Thanks so much!

1678764853883.png
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Maybe I'm not understanding the entire problem. If the DEBIT data is spread out over only two columns, and even if other data like the CREDIT column has the same problem
Book1
ABCDEF
1DEBITColumn7DEBIT DATEColumn8CREDITCREDIT DATE
2$ 1,000.002/1$ 2,000.002/1
3$ 1,000.002/2$ 2,000.002/2
4$ 1,000.002/3$ 2,000.002/3
Sheet2

A simple merge will clean them up:
Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table2"]}[Content],
    ChangedType = Table.TransformColumnTypes(Source,{{"DEBIT", type number}, {"Column7", type number}, {"DEBIT DATE", type date}, {"Column8", type number}, {"CREDIT", type number}, {"CREDIT DATE", type date}}),
    MergedColumns = Table.CombineColumns(Table.TransformColumnTypes(ChangedType, {{"DEBIT", type text}, {"Column7", type text}}, "en-US"),{"DEBIT", "Column7"},Combiner.CombineTextByDelimiter("", QuoteStyle.None),"Debit.1"),
    MergedColumns1 = Table.CombineColumns(Table.TransformColumnTypes(MergedColumns, {{"Column8", type text}, {"CREDIT", type text}}, "en-US"),{"Column8", "CREDIT"},Combiner.CombineTextByDelimiter("", QuoteStyle.None),"Credit.1"),
    ChangedType1 = Table.TransformColumnTypes(MergedColumns1,{{"Debit.1", type number}, {"Credit.1", type number}})
in
    ChangedType1
Resulting in this
Book1
HIJK
1Debit.1DEBIT DATECredit.1CREDIT DATE
2$ 1,000.002/1$ 2,000.002/1
3$ 1,000.002/2$ 2,000.002/2
4$ 1,000.002/3$ 2,000.002/3
Sheet2

The new merged columns were automatically named and can be easily changed as needed right in the Code bar. The only non UI things I did was rename the steps removing the spaces to make the code easier to read.
 
Upvote 0

Forum statistics

Threads
1,215,327
Messages
6,124,281
Members
449,149
Latest member
mwdbActuary

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