Awesome....great way of teaching... making complex things so easy ...
@malchicken2 жыл бұрын
Best power query vids. Unfortunately, I don’t really see your videos shown under related videos when I watch power query videos. To consider, maybe adding hashtags to the description or related channels to your channel page will help the KZbin algorithm show your videos for related videos.
@rick_.2 жыл бұрын
I always learn something from your videos. BTW, you could also have used List.Skip(,2) to remove the first two columns, either for filtering the column names or when selecting the record values. = Table.AddColumn(Source, "Coalesce",each List.Last(List.RemoveNulls( List.Skip(Record.ToList(_),2))))
@ExceedLearning2 жыл бұрын
Glad you find our videos helpful! :) Yes, for the first part of the video we could have used List.Skip, as it would return the same result. However, using Record.SelectFields is a more robust solution. When we moved the column Type (at around 8:00), the solution with List.Skip would remove the column Jan instead of Type, and it would return the wrong result.
@norbertschmidt65322 жыл бұрын
Dear EL, thanks, great and super.
@TylehurstXL Жыл бұрын
So thats what _ means ! Thank yiu fir explaining. I ve been doing PQ for 1 year didn’t know.
@smvpegb6 ай бұрын
thankyou for this video is very helpful
@silverfunnel68192 жыл бұрын
Very useful. Thank you!
@engahmedelbendary15662 жыл бұрын
thx alot for your Effort and go on
@silverfunnel68192 жыл бұрын
It would be interesting to have the corresponding column name in a new column🙂
@umangdbz2 жыл бұрын
Awesome bro !
@vacilando862 жыл бұрын
Awesome
@SamehRSameh2 жыл бұрын
We Need more about M language and power query
@epernayjfl2 жыл бұрын
Bonjour et merci pour ce partage de connaissances ! Poster votre fichier exemple serait bénéfique pour nous ! 😉
@ExceedLearning2 жыл бұрын
¡Hola! Encuentre el vinculo al archivo de Excel a continuación 😄 exceed.hr/wp-content/uploads/Coalesce.xlsx
@MrWella12342 жыл бұрын
Thanks for the tutorial. What about if you use the "Record.RemoveFields" insted of "Record.SelectFields"? then you can remove the name and type column and then it will be dynamic.
@ExceedLearning2 жыл бұрын
Hi, It is true that by using Record.RemoveFields you can achieve the same solution (similar to remove columns or remove other columns in the PQ user interface). We used Record.SelectFields because sometimes there are more complex filter conditions to evaluate, and that's where the Record.SelectFields can be a better choice.
@kartik-wi2jv2 жыл бұрын
Excellent explanation, can you help me, how we need to refer to the previous row value in power query, for example, calculate date difference of current date and previous row date.
@kndeepak11 ай бұрын
Add and index column and refer to current row index -1