Power Query Help

Shaz_Mthembu

New Member
Joined
Apr 11, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi All

Please help, after loading my pdf statement into power query, my description spills over down to a second row and creates also a null row.

My wish is to then merge my description from null row back to row above it as one full description.
 

Attachments

  • Sample File Snapshot.jpg
    Sample File Snapshot.jpg
    160 KB · Views: 14

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Can do but I need your sample data
 
Upvote 0
Can you post the data here? In table format or use the Xl2BB tool
 
Upvote 0
Hi,
Try something like this,

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    ColName = Table.ColumnNames(Source),
    #"Grouped Rows" = Table.FromRecords(Table.Group(Table.FillDown(Source, {ColName{1}}), ColName{1}, {{"Custom", each let x = Text.Combine(Table.Column(_, ColName{2}), " ") in Table.TransformColumns(_, {ColName{2}, each x}){0}}})[Custom])
in
    #"Grouped Rows"
 
Upvote 0

Forum statistics

Threads
1,215,201
Messages
6,123,621
Members
449,109
Latest member
Sebas8956

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