Project Management Phases Guide

This is a simple guide to provide information on the four phases of project management by the Harvard Business Review.

Why Is This Important?

Project management, even if you are not ultimately responsible for the management of the project itself, is an important topic in terms of data analysis and management. As an analyst, you will be working with others to define and measure business processes for your organization. Often, you will be working with people that may have one perception of what is achievable but little visibility as to the data available to support that vision.

As an analyst, you are responsible for analysis and messaging the results of your analysis. You have a special place in any project team, because you have acquired skills to make complicated things plain.

Knowing about project management empowers you to step back and see what is required to take something from conception to implementation and closeout, while ensuring communication, problem solving, resource conservation, and continual feedback. You may not ask every question or do every task on the following checklists, but having visibility over the project lifecycle important.

How Can I Use These?

Below are simple tables that you can scrape and import using Power Query in Excel. The nice thing about it is you never have to store a template and check if the source has been updated. You can just scrape it from here with some Power Query code after adding a blank query and pasting M code from below.

Here are the checklists broken out by stage:

Planning

Build-Up

Implementation

Closeout

Importing Into Power Query

The benefit of having these styled in simple html tables is that if you want to use them, you can use Power Query in Excel quite easily to connect and import these into an Excel sheet. Here is the code for each phase:

Planning M Code

let
  Source = Web.Page(
    Web.Contents(
      "https://powergi.tech/guides/project-management-cheat-sheet/"
    )
  ), 
  Data0 = Source{0}[Data], 
  Changed_Type = Table.TransformColumnTypes(
    Data0, 
    {
      {"Type", type text}, 
      {"Stage", type text}, 
      {"Task/Question", type text}
    }
  )
in
  Changed_Type

Build-Up M Code


let
  Source = Web.Page(
    Web.Contents(
      "https://powergi.tech/guides/project-management-cheat-sheet/"
    )
  ),
  Data1 = Source{1}[Data],
  Changed_Type = Table.TransformColumnTypes(
    Data1,
    {
      {"Type", type text},
      {"Stage", type text},
      {"Task/Question", type text}
    }
  )
in
  Changed_Type

Implementation M Code

let
  Source = Web.Page(
    Web.Contents(
      "https://powergi.tech/guides/project-management-cheat-sheet/"
    )
  ), 
  Data2 = Source{2}[Data], 
  Changed_Type = Table.TransformColumnTypes(
    Data2, 
    {
      {"Type", type text}, 
      {"Stage", type text}, 
      {"Task/Question", type text}
    }
  )
in
  Changed_Type

Closeout M Code

let
  Source = Web.Page(
    Web.Contents(
      "https://powergi.tech/guides/project-management-cheat-sheet/"
    )
  ), 
  Data3 = Source{3}[Data], 
  Changed_Type = Table.TransformColumnTypes(
    Data3, 
    {
      {"Type", type text}, 
      {"Stage", type text}, 
      {"Evaluate", type text}
    }
  )
in
  Changed_Type