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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
pbyrne98
Regular Visitor

Table.RemoveColumns(Table, Table.Column.Values)

Someone is going to ROFL on this one.

Three queries:

1. Query 1 : Table with all columns in a CSV

2. Query 2 : Table with one column with list of columns I want to keep in query 1

3. Query 3 : Query 1 Table with all columns removed excluding column names in the table in Query 2.

 

What is the syntax for Table.RemoveColumns or KeepColumns that allow me to end up with Query 3?

1 ACCEPTED SOLUTION

That seemed to do the trick, in the end I referenced the original query (pm_project) to create a 'Source', add a customised step with the following command and voila 🙂

 

= Table.SelectColumns(Source, tblPACfields[pm_project_fields])

View solution in original post

5 REPLIES 5
wdx223_Daniel
Community Champion
Community Champion

Table.SelectColumns(Query1,Table.ToColumns(Query2){0},MissingField.UseNull)

BA_Pete
Super User
Super User

Hi @pbyrne98 ,

 

Try the following for your Table3 query:

let
    Source = Table.SelectColumns(Query1, Query2)
in
    Source

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Thanks Pete,

This is what pops up when I put it in, it maybe that the Query2 is a table and not a list?

 

Expression.Error: We cannot convert a value of type Table to type Text.
Details:
Value=[Table]
Type=[Type]

 

Added pictures of the Query 1, 2 and 3 to help.

 

Query1.jpg

 

Query2.jpg

 

Query3.jpg

 

Query3 Advanced Editor.jpg

 

 

   

 

 

You're nearly there. The issue is that tblPACfields is a table rather than a list like the function expects.

 

You can fix this by specifying the column from the table (since table columns are lists).

Table.SelectColumns(pm_project, tblPACfileds[pm_project_fields])

Or, assuming the query pm_project_fields is already the appropriate list (rather than a table).

Table.SelectColumns(pm_project, pm_project_fields)

 

That seemed to do the trick, in the end I referenced the original query (pm_project) to create a 'Source', add a customised step with the following command and voila 🙂

 

= Table.SelectColumns(Source, tblPACfields[pm_project_fields])

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors