ApiSkills

Power Query (M)

Open Power BI / Excel → Get Data → Blank Query → Advanced Editor, then paste the file's contents. Replace the example API domain with yours.

🔒 Downloads are free — just sign in first. Clicking a download will take you to sign-in and bring you right back.

Authentication

Pagination

Data manipulation (advanced M)

  • Group & Aggregate (Table.Group)

    One row per department: sums, average, count, variance %.

    Sign in to download
  • Merge / Join (NestedJoin + Expand)

    Enrich campaigns with the channel type from another table.

    Sign in to download
  • Pivot & Unpivot

    Daily spend → one column per channel (Table.Pivot); reverse included.

    Sign in to download
  • Types, custom & conditional columns

    Fix types, % change, up/down flag, weekday from a date.

    Sign in to download
  • Running total (window)

    Cumulative spend over sorted dates via List.FirstN + List.Sum.

    Sign in to download
  • Top-N per group (nested tables)

    Top 3 run-scorers per team — greatest-n-per-group in M.

    Sign in to download

Web Scraping

  • Html.Table (text + attribute)

    Extract title/price text and the image src attribute from /samples/store.

    Sign in to download

Capstone

  • ApiKeyName + Paginate + Flatten

    Page the nested-list shape and expand it into a flat table.

    Sign in to download