When using a simple CASE expression which is considered to be the catchall

IFTTT—If This, Then That. If you are using the Data Studio, then you should learn how to use the Case statement.

Now, functions are a very important part within Google Data Studio to create calculated fields. And the Case statement is probably the most advanced but most powerful function you can learn in Data Studio. It works just like If This, Then That!

In today’s lesson, I’ll show you how we can use the Case statement in building our dashboards and create calculated fields.

Subscribe & Master the Basics with our FREE GDS Course

GET THE FREE COURSE

An overview of what we’ll cover:

When using a simple CASE expression which is considered to be the catchall

Google Data Studio Essentials Training: An intermediate course on Google Data Studio

What are Functions in Data Studio?

To understand functions, it helps to know about calculated fields. Calculated fields allow you to set up reports using the metrics and dimensions in your data. It also enables you to tweak the data based on the customization that your report will need to show using different code techniques. 

Functions are among the best features of calculated fields. Functions use branching logic to evaluate data, manipulate geographic information, text, and dates, and perform relevant arithmetic.

There are many useful functions in Data Studio that you should get to know. However, for this tutorial, we’ll focus specifically on the Case function. (To learn more about calculated fields and some other functions, check out our Google Data Studio Calculated Fields Guide.)

The Case function is probably the most advanced and most powerful function you can learn. This function allows for the creation of new categories as well as groupings of data. It uses conditional logic in order to identify the calculated field’s value.

This  tutorial will explain the case statement and demonstrate how to use it in our Data Studio dashboards. 

The Case Statement Explained

Today, I’m going to show you how to use Case When, a statement in Google Data Studio to create calculated fields. The Case When statement is one of the most powerful formulas available in Google Data Studio which you can use in many situations. 

The Case When function is an if this, then that type of formula which can be used for more complex conditional expressions. It can help greatly with cleaning up groupings in marketing programs like Google Analytics by segregating values and data with the use of proper conditions.

Use Case: Showing Traffic & Conversions by Weekdays vs. Weekend

But for the purpose of this tutorial, we’re going to use it to build a table that shows traffic and conversions from Google Analytics by Weekday versus Weekend. And you know, that’s not a dimension that is usually available in Google Analytics.

NOTE: This is a rather advanced feature of Google Data Studio. Therefore, you should already know the basics, like how to build reports and visualize data using charts. 

Open the report you’d like to use. For this tutorial, we will be using the Google Analytics demo account Google Merchandise Store as a data source. If you’re totally new to Case functions, I’d recommend that you use the same data source so that you can follow along with our steps exactly while you get familiar with the technique.

Our aim today is to create a table and categorize days of the week into two groups: Weekdays and the Weekend. We want to be able to visualize and analyze sessions, conversion rates, etc, per Weekday versus Weekend. 

For this, we first need to table. So let’s add one by clicking on the Add a chart button and clicking on the Table option.

When using a simple CASE expression which is considered to be the catchall

After that, the chart will be added to the report. 

Next, let’s add our metrics. In this case, we’ll input Sessions into the Available Fields search box and drag our desired field into the Metric section.

When using a simple CASE expression which is considered to be the catchall

We’ll also add the E-commerce Conversion Rate metric and drag it under the Metric section as well.

When using a simple CASE expression which is considered to be the catchall

And we also want to add the Average Order Value. We’ll search it under the Available Fields section and once it’s reflected in the results, we’ll drag it under the Metric section.

When using a simple CASE expression which is considered to be the catchall

This chart seems a bit squished, doesn’t it? Remember that you can always make the chart a bit bigger to see all the data by dragging the edges on either side.

When using a simple CASE expression which is considered to be the catchall

🚨 Note: If you double click on one of the chart’s columns, it will resize all the columns automatically to show you all the data.

When using a simple CASE expression which is considered to be the catchall

For the dimension, we don’t want Medium. We want something closer to be able to see the name of the day of the week. This is something that is available in Google Analytics by default. 

To do this, we will input the Day of Week Name on the Available Fields section and select the correct dimension accordingly.

When using a simple CASE expression which is considered to be the catchall

We just want to use the Day of Week Name as a starting point, so we’ll drag it under the Dimensions section.

When using a simple CASE expression which is considered to be the catchall

After setting the correct dimension, we now have our weekdays at the Day of Week Name, Sessions, Page views, E-commerce Conversion Rate, and Average Order Value.

When using a simple CASE expression which is considered to be the catchall

Now, this is quite close to what we want, but not exactly. Instead of seeing the name of each day separately on its own row, we’d like to have only two rows, the first being Weekday and the second Weekend. However, this is not a dimension that is already available in Google Analytics.

So to do this, we need to create a calculated field. Calculated fields are fields whose values are evaluated based on some calculations on other fields values. 

To create one, we need to go to the Resources menu and click on Manage added data sources to see our data source.

When using a simple CASE expression which is considered to be the catchall

Then, click on Edit.

When using a simple CASE expression which is considered to be the catchall

When we edit our Data Source, we can add new fields. To do this, we’ll click on the Add a Field button.

When using a simple CASE expression which is considered to be the catchall

We will then arrive at this interface which allows us to give our new field a name. I’m going to name it Day Type. 

And then in the formula section, I’m going to use and introduce you to Case When Statement.

Before I start typing in the formula, let’s recall what we want to achieve in the table above. 

First, we want to write Weekday if it’s a Monday, Tuesday, Wednesday, Thursday, or Friday.

When using a simple CASE expression which is considered to be the catchall

But if it’s a Saturday or a Sunday, they should be classified as a Weekend. 

Google Data Studio will validate the formula and show a green checkmark once the formula is seen as valid.

When using a simple CASE expression which is considered to be the catchall

The Syntax of a Case When Statement

Let’s go over the syntax so that we can write this logic with a Case When formula.

Let’s type in CASE WHEN. I use uppercase here, but you can write in lowercase as well.

After typing WHEN, it’s going to say it’s invalid, but it’s okay. I’m just showing you it doesn’t allow me to input sample texts here. This will be fixed when we finish our function.

On the second line of code, we’ll type in a code that says when a certain condition is met, it will return a result. The formula for this is WHEN → Condition → = → THEN → Result. (Note that this is just a template or formula for how you can implement a variety of Case When functions—you will need to use real conditions from your data and describe the result that you want to return in your use case.)

And when another condition is true, we want to return another result. Remember that we always end our case with the word END. So, the formula for this next part is WHEN → Condition 2 → = → THEN → Result 2 → END .

When using a simple CASE expression which is considered to be the catchall

Writing the Use Case Statement

So how do we apply this to our use case of weekdays and weekends?

Now in this case, we do not need anything else because we only have seven values for each day of the week. And we already know the return string that we want for each condition. So, let’s start writing.

We’ll write WHEN → Day of Week Name → = → Monday → THEN → “Weekday”. This tells Data Studio that when the day of week name is Monday, then it is a Weekday.

We’ll do the same for days Tuesday through Friday.

And now, we can Save it.

When using a simple CASE expression which is considered to be the catchall

Then, we’ll click on Finished.

When using a simple CASE expression which is considered to be the catchall

Let’s add our newly-created dimension which is Day Type.

When using a simple CASE expression which is considered to be the catchall

For each day of the week that is a weekday, the Day Type is now Weekday. And for Sunday and Saturday, it is Weekend. 

When using a simple CASE expression which is considered to be the catchall

But this still isn’t quite what we wanted. We’d actually like two rows, one for Weekdays and one for Weekends. 

So, we’ll get rid of their Day of Week Name as a field in the Dimension list.

When using a simple CASE expression which is considered to be the catchall

That’s better. On our table, we can now see our Sessions, Page Views, E-commerce Conversion Rate, and Average Order Value per Weekday versus Weekend.

When using a simple CASE expression which is considered to be the catchall

We can already see some interesting data in this table.

If I were the owner of this shop, I would rather advertise and promote my products on Weekdays because the Average Order Value is five times bigger than the Average Order Value on Weekends. 

When using a simple CASE expression which is considered to be the catchall

The Case When Formula

While I’d like to keep this tutorial short and sweet, I want to return briefly to the Case When formula to show you some interesting things about it. 

Again, let’s go to Resource and then click on Manage added data sources. 

When using a simple CASE expression which is considered to be the catchall

Then, we’ll click on the Edit button on the view of our data source.

When using a simple CASE expression which is considered to be the catchall

We’ll type in day to find the specific field we need.

When using a simple CASE expression which is considered to be the catchall

Once we’ve found our field, we’ll click on fx (function).

When using a simple CASE expression which is considered to be the catchall

Then, displayed in the code window is our Formula.

When using a simple CASE expression which is considered to be the catchall

You can troubleshoot and edit any of your formulas for any of your metrics using this tool. 

Note that if you want to do calculations with metrics themselves, this requires a slightly different approach. To learn more, check out our guide to Calculating a Conversion Rate between Two Metrics.

Other Case Functions

Logical Operators

There are some other useful functions that I want to describe briefly. The first is logical operators, which you can use in the conditions section of the Case When statement. 

Instead of using the equal sign, we can use an exclamation mark to say “does not equal to.”

When using a simple CASE expression which is considered to be the catchall

Another thing that we can do is to raise another condition using OR. For example, here we’ll include the field name, which is the Day of Week Name → = → Tuesday → THEN → Weekday .

Although we’ve placed Monday and Tuesday in a single line, we can’t bring all of these days into one line. However, there is still a better solution to remedy this.

When using a simple CASE expression which is considered to be the catchall

To do that, we’ll remove lines three to line six because I want to bring all the Weekdays into one line.

When using a simple CASE expression which is considered to be the catchall

IN Case Statement

For this, I’m going to use the IN Case Statement. The IN Case Statement can group several different conditions inside parentheses. To do that, we’ll input the following into the code window:

IN → ( → ”Monday” → , → “Tuesday” → , → “Wednesday” →  , → “Thursday” → , → “Friday” → ) → THEN → “Weekday”.

The result is the same but we achieved the logic that we wanted. 

When using a simple CASE expression which is considered to be the catchall

Regular Expressions

To combine Saturday and Sunday, we’re going to use a regular expression.

If you do not know what a regular expression is, then you can use the IN Case Statement like we did for the other weekdays.

We should first delete the fourth line of code for Sunday because we’ll be combining  it with Saturday.

When using a simple CASE expression which is considered to be the catchall

We can use a regular expression, in a Case When statement which is powerful. It brings the flexibility of this formula to a whole next level. 

It’s easier to write the code in seven lines, one for each day. However, I would like to encourage you to use RegEx as it’s so much more powerful than the IN Case Statement. It’s also useful in a wide variety of situations, so it keeps you flexible.

To implement the regular expression, we’ll type in REGEXP_MATCH → ( → Day of Week Name → “Saturday | Sunday” → ) → THEN → “Weekend” . 

The pipe in between Saturday and Sunday signifies “or.” So the code reads as when the day of the week is either Saturday or Sunday. 

When using a simple CASE expression which is considered to be the catchall

Now that the formula is valid, let’s Update it.

When using a simple CASE expression which is considered to be the catchall

Then, we’ll click on the Finished button to save it.

When using a simple CASE expression which is considered to be the catchall

And now we have the same table which has two lines of code for both the Weekday and Weekend Day Types.

When using a simple CASE expression which is considered to be the catchall

Case Else Statement

We have one more option, which is Case Else. Which means if none of these conditions are met, then return another result.

Sometimes you want to use Else as a catchall to just include anything that’s not one or two specific conditions that you’ve already included in a function. You can also use it to make sure that data with any errors still gets counted.

For example, if the Day of Week Name field for a data point was populated with something other than a day of the week (i.e. “basketball” or “February”), then your function will give a separate return for these data points.

To use this, we’ll write ELSE → “Result 3” .

When using a simple CASE expression which is considered to be the catchall

Summary

Using the Case When statement in Google Data Studio is very valuable, especially for creating accurate calculated fields.

Through this tutorial, you were able to learn about the importance of the Case function and its applications along with the logical operators, IN Case statements, and regular expressions which are the conditions you can use to optimize your use of the Case When statement.

If you want to dive deeper into GDS, check out our handy guide to functions for calculated fields in Data Studio, or get to know more about displaying your data with multiple dimensions at the same time in Google Data Studio pivot tables.

Or if you’re interested to explore all the other features of Google Data Studio, you can learn more about it when you join our Google Data Studio for Beginners Free Course.

Do you have any other use cases for Case Functions? Let us know down below in the comments!

Subscribe & Master the Basics with our FREE Course GDS Course

GET THE FREE COURSE

When using a simple CASE expression which is considered to be the catchall

JOIN US!

Master Data & Analytics with Measuremasters

Exclusive Courses & Workshops | Ongoing Troubleshooting | Support Resources, Tools & much more

FIND OUT MORE

When using a simple CASE expression which is considered to be the catchall

Julian Juenemann

Julian started and grew venture-backed startups with his unique 'data first' approach to Online Marketing. He then founded MeasureSchool.com to help marketers, like him, with the data-driven way of digital marketing.

What is simple CASE expression in SQL?

The CASE expression goes through conditions and returns a value when the first condition is met (like an if-then-else statement). So, once a condition is true, it will stop reading and return the result. If no conditions are true, it returns the value in the ELSE clause.

What operators are supported in the simple CASE expression?

Simple CASE expression The CASE expression compares an expression to a set of expression (when_expression_1, when_expression_2, when_expression_3, …) using the equality operator (=). If you want to use other comparison operators such as greater than (>), less than (<), etc., you use the searched CASE expression.

How to use CASE statement with select statement in SQL?

The CASE statement always goes in the SELECT clause. CASE must include the following components: WHEN , THEN , and END . ELSE is an optional component. You can make any conditional statement using any conditional operator (like WHERE ) between WHEN and THEN .

How to use CASE statement in SQL Server?

The CASE statement can be used in SQL Server (Transact-SQL). SELECT contact_id, CASE WHEN website_id = 1 THEN 'TechOnTheNet.com' WHEN website_id = 2 THEN 'CheckYourMath.com' ELSE 'BigActivities.com' END FROM contacts; One thing to note is that the ELSE condition within the CASE statement is optional.