Removing a variable number of first rows in Power Query

Поделиться
HTML-код
  • Опубликовано: 21 окт 2024
  • This video demonstrates two approaches to remove a variable number of first rows in Power Query (one with GroupKind.Local and the other with List.PositionOf).

Комментарии • 2

  • @GoodlyChandeep
    @GoodlyChandeep Год назад +2

    Hi Pat ,
    Table.Skip function when used with a condition stops to skip rows when the condition becomes false.
    So I can write Table.Skip ( TableName, each _[Value] = 0 )
    I have been enjoying your videos a lot. Please keep them coming!

    • @hoosierbi5669
      @hoosierbi5669  Год назад +2

      Great tip! That's a better way to do it.