PowerQuery how to merge 3 column into 1

GerryZ

Well-known Member
Joined
Jul 4, 2014
Messages
1,224
Office Version
  1. 365
Platform
  1. Windows
Hello Excel friends
I'm stuck with this solution propably easy but I don't know how
see this image below
lLoTtdo.png

Thank you
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Code:
let
  Source = Table.FromColumns(
    {
      List.RemoveNulls(
        List.Combine(Table.ToColumns(Excel.CurrentWorkbook(){[Name = "Table1"]}[Content]))
      )
    },
    {"Result"}
  )
in
  Source
 
Upvote 0
Hello Thank you for the answer but i get error
probably i make some mistake
Is possible to do with UI or where do you put your M code?
can you post the file so i can see
 
Upvote 0
Nice, I wish to understand..... how you did this? with UI o you wrote a formula, can you show all the steps
 
Upvote 0
another approach with most steps from user interface except one

Rich (BB code):
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    TTC = Table.ToColumns(Source),
    C2T = Table.FromList(TTC, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
    Exp = Table.ExpandListColumn(C2T, "Column1"),
    FilterNull = Table.SelectRows(Exp, each ([Column1] <> null))
in
    FilterNull
 
Upvote 0
Hello sandy666
Your approach with user Interface is much better, but I'm not able to adjust the formula il my example
i have sintax error, i don't know where I make mistake
How can I add this line of Mcode?
Rich (BB code):
TTC = Table.ToColumns(Source),
was nice to watch a short video with all the steps you did

Thank you
 
Last edited:
Upvote 0
Because i'm tryng to learn, and not just solve the problem
 
Upvote 0
Ok Thank You I did it
Great job
Thank you
 
Upvote 0

Forum statistics

Threads
1,214,976
Messages
6,122,539
Members
449,088
Latest member
RandomExceller01

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