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
Polar_A
Helper I
Helper I

Loading from the dataverse

Hi I need some help please.

I have managed to upload a table from the Dataverse but there are too many columns (500+) in the table. I previously used Microsoft SQl server to manipulate the columns using views. Is there a way to reduce the column number before the upload via Dataverse as I am unable to transform the data.

KR,

Polar_A_1-1716988138316.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Polar_A

 

You may check if the Workaround for very large number of lookups or choice columns would be helpful. In advanced editor, replace the query text with below query text and add column names in the #“selectedcolumns” step.

let
    Source = CommonDataService.Database("<myenvironment.crmX>.dynamics.com"),
    dbo_contact = Source{[Schema="dbo",Item="contact"]}[Data],
    #"selectedcolumns" = Table.SelectColumns(dbo_contact,{"fullname", "emailaddress1"})
in
    #"selectedcolumns"

 

Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Polar_A

 

You may check if the Workaround for very large number of lookups or choice columns would be helpful. In advanced editor, replace the query text with below query text and add column names in the #“selectedcolumns” step.

let
    Source = CommonDataService.Database("<myenvironment.crmX>.dynamics.com"),
    dbo_contact = Source{[Schema="dbo",Item="contact"]}[Data],
    #"selectedcolumns" = Table.SelectColumns(dbo_contact,{"fullname", "emailaddress1"})
in
    #"selectedcolumns"

 

Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

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