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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
LocNguyen
Advocate I
Advocate I

PBI desktop does not pull full data from dataflows

Hello,

 

I ran into an issue today regarding pulling data from Dataflows.

 

I tried to import data from Dataflows into my PBi Desktop. Unfortunately, there is one column completely blank (the others columns are still good).

I already tried refreshing the dataflow again, refreshing PBI Desktop, and Clearing Permission for Dataflow; but none of them resolved my issue.

 

Below is the screenshot of my Dataflow. Column new_type_display is having data:

 Dataflow.PNG

 

And here is my PBI Desktop navigator looks like when I tried importing the data. The same column is completely blank.

PBI Desktop.PNG

 

 

Has anyone else run into this issue? Did you have any other solutions?

Thanks,

 
1 ACCEPTED SOLUTION
mwegener
Most Valuable Professional
Most Valuable Professional

Hi @LocNguyen ,
I remember this issue.

You must also select the base field so that the _display field is transferred.

In your case it should be the field "new_type".

Source = Cds.Entities("https://ebs1.crm.dynamics.com", null),
  #"Navigation 1" = Source{[Group = "entities"]}[Data],
  #"Navigation 2" = #"Navigation 1"{[EntitySetName = "psa_regions"]}[Data],
  #"Choose columns" = Table.SelectColumns(#"Navigation 2", {"new_code", "new_type", "new_type_display", "psa_name", "psa_regionid"})

Or you can try to use Table.Buffer to avoid query folding.

Source = Cds.Entities("https://ebs1.crm.dynamics.com", null),
  #"Navigation 1" = Source{[Group = "entities"]}[Data],
  #"Navigation 2" = Table.Buffer(#"Navigation 1"{[EntitySetName = "psa_regions"]}[Data]),
  #"Choose columns" = Table.SelectColumns(#"Navigation 2", {"new_code", "new_type_display", "psa_name", "psa_regionid"})

Regards,

Marcus

Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.

 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


View solution in original post

6 REPLIES 6
mwegener
Most Valuable Professional
Most Valuable Professional

Hi @LocNguyen ,

 

did you map the data flow to a CDM (Common Data Model) standard entity?

I think the "_display" fields are looked up in another entity.

 

Regards,

Marcus

Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


@mwegener 

Yes I mapped it from Microsoft Dynamics CRM. Please see the query below:

 

Source = Cds.Entities("https://ebs1.crm.dynamics.com", null),
  #"Navigation 1" = Source{[Group = "entities"]}[Data],
  #"Navigation 2" = #"Navigation 1"{[EntitySetName = "psa_regions"]}[Data],
  #"Choose columns" = Table.SelectColumns(#"Navigation 2", {"new_code", "new_type_display", "psa_name", "psa_regionid"})
 
The column is just one of the default columns that I selected from the entity.
mwegener
Most Valuable Professional
Most Valuable Professional

Hi @LocNguyen 

 

try this

 

Source = Cds.Entities("https://ebs1.crm.dynamics.com", [ReorderColumns=null, UseFormattedValue=true]),

Regards,

Marcus

Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support. 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


@mwegener 

Still not working 😞

mwegener
Most Valuable Professional
Most Valuable Professional

Hi @LocNguyen ,
I remember this issue.

You must also select the base field so that the _display field is transferred.

In your case it should be the field "new_type".

Source = Cds.Entities("https://ebs1.crm.dynamics.com", null),
  #"Navigation 1" = Source{[Group = "entities"]}[Data],
  #"Navigation 2" = #"Navigation 1"{[EntitySetName = "psa_regions"]}[Data],
  #"Choose columns" = Table.SelectColumns(#"Navigation 2", {"new_code", "new_type", "new_type_display", "psa_name", "psa_regionid"})

Or you can try to use Table.Buffer to avoid query folding.

Source = Cds.Entities("https://ebs1.crm.dynamics.com", null),
  #"Navigation 1" = Source{[Group = "entities"]}[Data],
  #"Navigation 2" = Table.Buffer(#"Navigation 1"{[EntitySetName = "psa_regions"]}[Data]),
  #"Choose columns" = Table.SelectColumns(#"Navigation 2", {"new_code", "new_type_display", "psa_name", "psa_regionid"})

Regards,

Marcus

Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.

 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


The Table.Buffer works great. Thanks so much, @mwegener !

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors