Forum Discussion

mike9999's avatar
mike9999
Icon for Advocate I rankAdvocate I
1 year ago
Solved

Table.Distinct incorrect

Hi-   I'm running a dataflow on a PPU P1 capacity.   I have ~12 million rows.   I'm attempting a Table.Distinct on six columns of various types. I get incorrect distinct results (it removes at ...
  • Omid_Motamedise's avatar
    1 year ago

    the syntax is correct, try to group the rows based on that 6 columns and see the groups of rows that remoed wrongly this might help to descover the reason of reamoving this rows.

  • pbiuseruk's avatar
    1 year ago

    The reason you received that suggestion about the Table.Buffer is because sometimes when query folding occurs (when the query is being run at source rather than in the Power BI engine), then it can rearrange steps in order to be more efficient. Sometimes this leads to incorrect results.

    Another way to stop this is to use Table.StopFolding instead of the Table.Buffer but I think you may end up getting the same message as they do near enough the same thing.

    Let me know if it happens to work for you though