Skip to content

Process Mapping

How to Describe your Processes

TLDR

  • A picture speaks a thousand words - it's a great way of describing your process
  • Go through your process, identifying each step and map it out
  • There are loads of tools you can do this in, such as Miro, Visio, Draw.io, LucidChart, or even PowerPoint
  • Some tools, might allow you to work with your colleagues in real-time, making collaboration easier
  • here is a nice guide which explains how the symbols should be used
  • Don't just map out what you currently have - start moving those post-its around to improve it!
Why should we care?
  • Process documents can be dry and difficult to follow - a picture can make a process much clearer
  • Mapping out a process can highlight redundant areas, showing you where quick wins can be made when improving it
  • It can allow new or less technical team members to get up to speed and feel a part of the RAP process.
Pre-requisites
  • Some information on what someone might need to be familiar with before they can use this page
Pre-requisite Importance Note
None! Anyone can do this - it's the first thing you should do when starting some RAP work

Before we dive in, here is a fun example of a process map from XKCD:

an amusing comic showing a flow chart describing how learning to use software mostly involves googling until we find some answers

RAP deals with improving processes, but before doing any programming, it really helps to understand what we already have; a great process map really helps with this!

Be the envy of your peers, and the talk of the time, by making a visual journey through your process, and you might even come across some quick win improvements on the way!

How to map a process

There is a nice guide to process mapping here, however in brief:

  • Write down your process (or if you've got a process document already, lucky you!)
  • Split this into steps.
    • it can be helpful not to go too granular initially; keep it high level - we don't need "click this button, then this button, etc."
    • instead, write what is intended, not how it is implemented, e.g. step 1: load the data into the database
  • Use flowchart symbols (or some other way if you prefer) to describe what each step is

You can then take this further by analysing the process map and identifying repeated or manual steps - RAP can help with this!

Example (using Markdown and Mermaid)

Let's imagine we had a simple process: Analysts get given a CSV, which they load into a SQL server, enter today's date, after which they run the SQL script and take the output into Excel. Splitting this into the steps:

  • Take two CSVs and load them each into the database manually.
  • Manually type in today's date, then run a SQL script that produces some analytical output in a table.
  • Manually extract this into an Excel spreadsheet.

We can then transform this into a flow chart: (this uses Mermaid)

graph LR

    A[Manually Load CSV 1]:::manual --> B[(Database)];
    C[Manually Load CSV 2]:::manual --> B;
    H[/CSV 1/] --> A
    I[/CSV 2/] --> C
    D[Manually type in today's date]:::manual --> E[[Run SQL Script]]
    B --> E
    E --> F[Manually extract results into Excel]:::manual
    F --> G[/Excel Output/]

    classDef manual fill:#FFCCCC

Using a process map to find improvements

Because a flowchart lays out the process clearly, it can make it easier to find things to improve, such as: - redunant steps or similar tasks being done several times - manual steps - pull out complex tasks into "sub tasks" -> which might also need flow charts! - this can also help you structure your code and decide when to break the code into different files

Following on from our example above: - we can see a few manual steps - could these be automated? - There are two tasks which "load CSVs" - could we make one automated process which can be run twice to load both? Or even just one task which loads both?

Considering this, we could imagine an improved process diagram, which might then form the basis of our RAP work:

graph LR

    A[Load CSV] --> B[(Database)];
    H[/CSV 1/] --> A
    I[/CSV 2/] --> A
    D[Calculate todays date] --> E[[Run SQL Script]]
    K[Get todays date manual/config]:::manual --> E
    J{Is todays date provided?} -->|no| D
    J -->|yes| K
    B --> E
    E --> F[Generate Excel output]
    F --> G[/Excel Output/]

    classDef manual fill:#FFCCCC
We can see above that we made a new "load CSV" task and that we changed many manual tasks to sound more automated "Generate" rather than make.

Note

perhaps you could use Python to automate the manual tasks?

We also added a bit of logic, where the process will calculate today's date if it is not given it - so we haven't removed every manual step (someone might still need to "give" the correct date to the process) - but we've managed to minimise the manual steps.

Common standards

Whatever makes sense to your team is the crucial part - however if you want it to make sense to other people too, there are some common flow chart standards you can follow.

Unified Modelling Language is an ISO standard which is widely used, and here is a nice guide which explains how the symbols should be used.

Tools

We won't go into tools so much here, as the right tool for you often depends on what is easiest to use in your organisation.

There are loads of tools for process mapping though, and some options be Miro, Visio, Draw.io, LucidChart, or even PowerPoint.

Where now?

  • You've mapped your process, so perhaps consider using the "thin slice strategy" to get going with RAPifying it?

Last update: March 1, 2024
External Links Disclaimer

NHS England makes every effort to ensure that external links are accurate, up to date and relevant, however we cannot take responsibility for pages maintained by external providers.

NHS England is not affiliated with any of the websites or companies in the links to external websites.

If you come across any external links that do not work, we would be grateful if you could report them by raising an issue on our RAP Community of Practice GitHub.