top of page
9d657493-a904-48e4-b46b-e08acb544ddf.png

POSTS

How to Build a Simple Environmental Pollutants Dashboard in Excel

Introduction

A good Excel dashboard should help you understand the data in seconds, not force you to dig through rows and columns. In this example, we use a compact environmental pollutants workbook to show how filters, KPI cards, formulas, and charts can turn a raw table into a clean decision-making dashboard.



PRACTICE MATERIAL BELOW!👇

Why this dashboard structure works

The workbook follows one of the most reliable Excel dashboard patterns: separate the model into Data, Lists, and Dashboard sheets.

How to build a simple environmental pollutants dashboard in Excel. That sounds simple, but it solves several common problems at once. Your raw data stays untouched, your dropdown lists stay organized, and your front-end dashboard remains clean and easy to use.

In the uploaded file, the structure is straightforward:

  • Data stores the monthly pollutant records.

  • Lists stores dropdown values and supporting lookup content.

  • Dashboard displays filters, KPI cards, summary tables, and charts.

This is exactly the kind of layout that scales well when a demo file later becomes a real reporting tool.

Dashboard titled "Environmental Pollutants Dashboard | Europe 2025" shows pollutant data with charts for monthly trends and country averages.
Dashboard titled "Environmental Pollutants Dashboard | Europe 2025

What is inside the workbook

The dashboard is based on a synthetic 2025 dataset with 600 data rows, covering 10 European countries, 5 pollutant types, and 12 months. The pollutants include PM2.5, PM10, NO2, O3, and SO2.

Each row contains practical reporting fields such as:

  • Date

  • Country

  • Region

  • Pollutant

  • Unit

  • Concentration

  • EU limit

  • Exceedance %

  • AQI score

  • Population exposure %

That makes the workbook useful for more than one chart. You can summarize concentration levels, compare pollutants against limits, and build trend or exposure views from the same base table.


Step-by-step solution

Step 1: Start with a flat and usable data table

A dashboard becomes easier when the source data is already reporting-friendly.

Instead of storing values in separate monthly blocks or complex matrix layouts, this workbook uses a flat table where every row represents one country, one pollutant, and one month.

That makes formulas like AVERAGEIFS() and MAXIFS() much easier to use.

A table like this is ideal for Excel dashboards because it supports:

  • filters

  • formulas

  • pivot tables

  • charts

  • future Power BI use

Common mistake: building the dashboard first and cleaning the data later. In practice, it should be the other way around.


Step 2: Build filter lists on a separate sheet

The workbook uses a separate Lists sheet for dropdown values such as Country, Pollutant, and Month.

That is a small design choice, but it matters. It keeps your dashboard clean and avoids hardcoding dropdown values directly into the front-end area.

For example, the list sheet includes entries such as:

  • All

  • Austria, Germany, France, Italy, and other countries

  • PM2.5, PM10, NO2, O3, SO2

  • Jan to Dec

This setup makes the dashboard easier to maintain. If you add another country or reporting period later, you only need to update the source list.


Step 3: Use KPI cards for the first summary

The dashboard shows four high-value KPI cards:

  • Average Concentration

  • Max Concentration

  • Average Exceedance %

  • Average AQI Score

These are good choices because they give both a performance view and a risk view.

At the formula level, the logic relies on conditional aggregation. In the workbook, the formulas also handle the "All" option with nested IF() logic.

A simplified version looks like this:

=AVERAGEIFS(Data!$I:$I,Data!$E:$E,$B$5,Data!$G:$G,$B$6,Data!$C:$C,$B$7)

This formula averages concentration values for the selected country, pollutant, and month.

For the maximum value, the pattern is similar:

=MAXIFS(Data!$I:$I,Data!$E:$E,$B$5,Data!$G:$G,$B$6,Data!$C:$C,$B$7)

In the actual dashboard, the formulas are longer because they also need to work when one or more filters are set to All.

Why this matters: a dashboard is only useful if the numbers at the top respond correctly to the filter choices.


Step 4: Add chart-ready summary tables

One of the best parts of this workbook is that the dashboard does not feed charts directly from the raw table. Instead, it creates summary ranges first.

That is a strong Excel design habit.

The dashboard includes a monthly summary area and a country comparison area. From there, Excel charts can stay stable and easy to manage.

This approach gives you two major benefits:

  1. The chart logic stays visible and auditable.

  2. You can change chart types later without rebuilding your calculations.


Step 5: Use two charts, not too many

This dashboard uses a focused layout with two charts:

  • a monthly pollution trend

  • a country comparison

That is enough for a compact dashboard.

A common mistake in Excel dashboards is adding too many visuals. When every chart competes for attention, none of them do a good job.

Here, the chart mix is practical:

  • the line chart answers “How does the pattern change over time?”

  • the comparison chart answers “Which countries stand out?”

That is a strong combination for quick analysis.


Practical example

Let’s say you filter the dashboard to:

  • Country: Germany

  • Pollutant: PM2.5

  • Month: All

Even in the demo data, the pattern becomes clear. Germany’s PM2.5 values are stronger in colder months, with January at 23.5 µg/m³ and December at 25.4 µg/m³, while the EU limit in the workbook is 15 µg/m³.

That means the exceedance percentage and AQI-related view become much more useful than concentration alone.

This is exactly why dashboards should not stop at one metric. A raw value is informative, but a limit comparison tells the real story.


Bonus tips and common mistakes

Keep units visible

If you work with pollutant data, units matter. In this workbook, concentration is stored in µg/m³. That should stay visible near KPI cards or chart titles.

Without units, dashboards look polished but become less trustworthy.


Do not mix manual inputs with formulas

Keep filter cells clearly separated from formula cells. Let users change only the intended inputs.

That reduces the chance of broken formulas, especially in handover files.


Build for extension

Even though this is a small workbook, the structure is ready for future upgrades:

  • add more countries

  • add more years

  • switch to Excel Tables

  • connect Power Query later

  • move the same model into Power BI

That is the kind of thinking that saves time later.


Downloadable file / template

You can use the workbook shown in this article as a demo starting point:


What’s inside:

  • a clean Data sheet

  • a Lists sheet for dropdown logic

  • a Dashboard sheet with KPI cards, summary tables, and charts

Because the file uses sample data, it is safe to test, adapt, and redesign without affecting real reporting.


Final thoughts

This dashboard is a good example of what Excel does well: combining formulas, filters, and visual summaries in one place without overcomplicating the model.

The main lesson is not just how to build one dashboard. It is how to structure a workbook so it stays readable, maintainable, and easy to expand.


Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
logo

Transform your data with our data analytics services! From Excel to Power BI with Power Query in the background, drive your business forward!

  • Linkedin
  • Xing
  • RSS
  • 4844455

Contact Us

Address:
83022 Rosenheim, Bavaria, Germany
Worldwide (online) available!

Join Us!

Stay updated with tips & tutorials!

© Excelized. All rights reserved.

bottom of page