Power Query Challenge 14: Identify All-Season Products - Solving with List.Difference

Поділитися
Вставка
  • Опубліковано 13 січ 2025

КОМЕНТАРІ • 9

  • @IvanCortinas_ES
    @IvanCortinas_ES 2 місяці тому +1

    Excellent solutions Omid. Very well explained. Thank you very much!

  • @Excelambda
    @Excelambda 2 місяці тому +1

    Great video!! Great solution!!
    Alternative:
    - since had no data , if "m", date vect and "p" products vector
    =LET(t,LEFT(UNIQUE(p&MONTH(m))),g,GROUPBY(t,t,COUNTA,,0),FILTER(g,TAKE(g,,-1)=12))

  • @omarnader776
    @omarnader776 2 місяці тому +1

    good and easy explanation, thanks

  • @kkravch
    @kkravch 2 місяці тому +1

    Thanks a lot, good and informative. I have a question though -- if one needs to do it on a large dataset, which option would give better performance -- large nested formula vs several simple steps? Thanks.

    • @PowerMquery
      @PowerMquery  2 місяці тому

      It's depend to the example but usually simple steps comes with better performance and to improve it Table.Buffer and List.Buffer are handy.

    • @kkravch
      @kkravch 2 місяці тому

      @@PowerMquery Thank you