29 Premium Themes

Included with purchase — and more features on the way!

Get access — $12 once

Version 2 is coming soon. The price goes up when it arrives.
Pay once today and every update after that is free.

One Dark Pro
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Andromeda
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Ayu Dark
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Ayu Mirage
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Ayu Light
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Cobalt2
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Night Owl
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Night Owl Light
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Azureus
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Bordo
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Hibernus
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Lilac
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Lux
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Minimus
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Obscuro
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Sereno
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Uva
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Noctis Viola
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Palenight
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Pico 8
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Shades of Purple
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Shades of Purple SD
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Synthwave '84
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Tokyo Night
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Tokyo Night Storm
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Tokyo Night Light
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Winter is Coming
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Winter is Coming Light
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq
Winter is Coming Dark
// Transforms a table into markdown syntax
(Table as table) =>
    let
    Source = Table,
    TableValues = Table.AddColumn(
        Source, "Custom", each Text.Combine(Record.FieldValues(_), " | ")
    ),
    HyphenLine = Text.Combine(
      List.Transform(
        Table.ColumnNames(Source), each Text.Repeat("-", Text.Length(_))
      ),
      " | "
    ),
    CombineList = List.Combine(
      {{Text.Combine(Table.ColumnNames(Source), " | ")},
      {HyphenLine}, TableValues[Custom]}
    ),
    TransferToMarkdown = Text.Combine(CombineList, "#(lf)")
  in
    TransferToMarkdown

// From https://github.com/mogulargmbh/powerquerysnippets/blob/main/snippets/Table_ToMarkdown.pq