I have a performance question on how Power Query works. I'm hoping someone has an answer rather than me having to test on my 12-million row dataset and slow laptop.
If I have (say) three Table.AddColumn commands, does PQ iterate through the entire dataset 3 times, or is it "smart enough" to know it can add those three columns on a single pass?
If I were to nest the commands Table.AddColumn(Table.AddColumn(Table.AddColumn(... would that ensure PQ added the columns on a single pass?
If I have (say) three Table.AddColumn commands, does PQ iterate through the entire dataset 3 times, or is it "smart enough" to know it can add those three columns on a single pass?
If I were to nest the commands Table.AddColumn(Table.AddColumn(Table.AddColumn(... would that ensure PQ added the columns on a single pass?