Forum Discussion

atgeraci's avatar
atgeraci
Frequent Visitor
6 years ago

Dataflow entitiy not showing all fields

Hello all!
So I am having an issue with my dataflow table not showing all the fields that are present when I generate the table. I added a "Day" column to the Date_Table table (please ignore the misnamed "Date Table" table), pictured below, and when I save and close and then refresh the field doesn't show up in the list.

 
 

 

Below you can see that I am looking at the entity and the "Day" column is nowhere to be found. Pulling that dataflow entitiy has the expected result of not including the missing field. What am I doing wrong?

Thanks for your help!

6 Replies

    • atgeraci's avatar
      atgeraci
      Frequent Visitor

      v-lili6-msft 
      I appreciate you looking into this, I have refreshed the dataflow multiple times. The field is present in the online viewer, but after I save and close and hit refresh it doesn't become available. I do not have a premium setup so that isn't an option for me afaik. Thanks for trying. If you have any other thoughts on why this is happening I will entertain anything!

      • Anonymous's avatar
        Anonymous
        Not applicable

        atgeraci , Have you observed any warnings while creating a dataflow.  ?

         

        Dataflow can remove the incorrect string column automatically.  try to recreate and check. 

  • I think I have a similar issue and found the root cause.  In my scenario, I created a custom column in Decimal format.  Preview data in dataflow looks good, but the new column does not show up in the entity/table after refresh (as confirmed by connecting to this Dataflow table from PBI Desktop).  I had this issue a couple months back, and could not confirm why it was happening.  Then today I looked into the Advanced Editor (M Query) and found that the final "in" statement points to not the last query step as usual, but points to the step before I made the latest custom column.  Example of the M Query having the issue.  I assume this issue will be fixed when I adjust the M Query manually, not sure why it occurred in the first place.  

     

      #"step 6" = Table.TransformColumnTypes(#"Changed Type", {"SOLD_TO"type text}),
      #"step 7" = Table.AddColumn(#"Changed Type1", "Sales incl Tariff"each [Sales] + [TARRIF]),
      #"step 8" = Table.TransformColumnTypes(#"step 7", {{"Sales incl Tariff", Currency.Type}})
    in
      #"step 6"