Forum Discussion
Anonymous
5 years agoNot applicable
Power Query with add rows with conditions
Hi! I am want to expend my table which records child-parent relationships. As you see, I want to create a row with for "abc" and set its parent as null. How can I do it with powerquery? thanks! ...
- Anonymous5 years ago
Hi Anonymous
Modify this line a little bit
Custom1 = List.Distinct(List.Difference(Source[Parent],Source[Child])),
Anonymous
5 years agoNot applicable
There is a problem with method one.
If "abc" appears twice, two rows will be added.
Anonymous
5 years agoNot applicable
Hi Anonymous
Modify this line a little bit
Custom1 = List.Distinct(List.Difference(Source[Parent],Source[Child])),