Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
nickvanmaele
Advocate II
Advocate II

Create Table from a number of lists that act as columns

Hi,

This forum post explains how to create a table from a list and specify the column name;

and this useful blog by @Rickmaurinus explains how to create tables based on adding rows. 

 

However, I am looking to create a table by glueing columns together where each column receives its value from a given list. 

Example, say that I have two lists of 5 elements each, 

  • listA = {"A" .. "E"}
  • listB = {1 .. 5}

By using Power Query functions and the above lists as input, how can I obtain the following table? 

 

ID1ID2
A1
B2
C3
D4
E5

 

I have tried variations on the following: 

Source = Table.Combine(
Table.FromList(listA,Splitter.SplitByNothing(),{"ID1"}),
Table.FromList(listB,Splitter.SplitByNothing(),{"ID2"})

)

 

However, Table.Combine( ) works only by adding rows together, so the above throws an error. 

No doubt that there is an easy and elegant way forward, but I can't seem to find it. 

 

 

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

Source=Table.FromColumns({ListA,ListB},{"ID1","ID2"})

View solution in original post

2 REPLIES 2
nickvanmaele
Advocate II
Advocate II

Thank you. Elegant and simple.

wdx223_Daniel
Super User
Super User

Source=Table.FromColumns({ListA,ListB},{"ID1","ID2"})

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors