How to work with the Boolean field in Google Data Studio (Looker Studio)
Note: Google Data Studio is now known as Looker Studio.
If a data field in your data source can have only one of the two possible values: true or false then you should use the Boolean field while setting up your data source schema.
For example, consider the following Google Sheets data source:
Here the field ‘Is Revenue > Forecasted Revenue’ can have only two possible values: TRUE or FALSE.
For Google Sheets, the values TRUE and FALSE are of type boolean.
So, when setting up the data source schema, we should set the data type of the field ‘Is Revenue > Forecasted Revenue’ to ‘Boolean’:
This seems pretty straightforward, doesn’t it?
But here is the thing.
This is not going to work.
When you create a report from this data source schema which uses the ‘Is Revenue > Forecasted Revenue’ field, you will get a system error:
That happened because Looker Studio did not recognize the boolean values stored in Google Sheets as a boolean value. Instead, it treats these boolean fields as ‘text’ fields:
No matter how you store boolean values in Google Sheets (whether as true/false, TRUE/FALSE, 0/1, yes/no), Looker Studio won’t recognize them as boolean values.
So, if you want to use a boolean field in Looker Studio then you would need to create and use a calculated metric.
Follow the steps below:
Step-1: Navigate to your data source schema editor and then change the data type of the field ‘Is Revenue > Forecasted Revenue’ from boolean to text:
Step-2: At the top right-hand side of your data source schema editor, find and click on the ‘ADD A FIELD’ button to create a new calculated field:
Step-3: Enter the name of your new calculated field. For example: ‘[NEW] Is Revenue > Forecasted Revenue’:
Step-4: Type the following text in the ‘Formula’ field:
case when
followed by a white space:
Step-5: Hover your mouse over the field ‘Is Revenue > Forecasted Revenue’ then click on the + button:
After clicking on the + button, your formula field would look something like the one below:
Step-6: Enter a white space and then type the following text in your formula field:
= “TRUE” then true else false end
Make sure you see the green-colored checkmark at the bottom of the formula box.
This checkmark indicates that you have entered the formula correctly.
If the formula that you have entered is not correct then you will see this symbol instead of the green checkmark.
I entered the following formula:
case when Is Revenue > Forecasted Revenue = “TRUE” then true else false end
This means if the value of the field ‘Is Revenue > Forecasted Revenue’ is ‘TRUE’ then return true.
Otherwise, return false.
The following formula won’t work:
In Looker Studio, you can compare a dimension or metric only with a literal value.
Here we are comparing the ‘Revenue’ dimension with another dimension called ‘Forecasted Revenue’ via the logical expression: Revenue > Forecasted Revenue
Step-7: Click on the ‘FORMAT FORMULA‘ button to make your formula more readable:
After clicking on the ‘FORMAT FORMULA‘ button your formula would look like the one below:
Step-8: Click on the ‘Save’ button.
Step-9: Now click on ‘All Fields’ in order to navigate back to the data source schema editor:
You should now see the new calculated field, listed in your data source schema:
Note: All calculated fields have got this ‘fx’ symbol through which you can easily spot them.
Now when you create a report based on this data source schema which uses the new calculated field, it would look like the one below:
Following is a short video that shows how I created the calculated field and then used it in my report:
Other articles on Looker Studio
- Looker Studio Alternative – Whatagraph
- Looker Studio Parameters explained with examples
- Looker Studio Number Formats / Data Types
- How to Change Language in Looker Studio
- Looker Studio Date Format and Time Explained
- Looker Studio Tutorial with FREE PDF ebook
- Looker Studio Functions, Formulas Tutorial
- Looker Studio Page Navigation Tutorial
- Understanding Report Editor in Looker Studio
- Best practices for creating a report in Looker Studio
- How to share reports in Looker Studio
- Seven methods to create a new report in Looker Studio
- Looker Studio Report Tutorial
- How to invite people to view or edit a report in Looker Studio
- How to share the link of your report in Looker Studio
- Schedule email delivery of a report in Looker Studio
- How to download Looker Studio report as PDF
- How to embed a Looker Studio report on a website
- Guide to Data Types in Looker Studio
- Image function in Looker Studio
- Image Link data type in Looker Studio
- Image data type in Looker Studio
- Looker Studio Geo Map – Latitude Longitude
- Why You Should Avoid Using Functions and Calculated Fields in Looker Studio
- Looker Studio Calculated Fields Tutorial
- Working with the Text data type in Looker Studio
- The Data Set Configuration Error in Looker Studio
- Data Source Fields in Looker Studio – Tutorial
- Refresh data source schema fields in Looker Studio
- Looker Studio Data Sources – Tutorial
- Looker Studio Dimension vs Metric
- How to filter by email in Looker Studio
- Looker Studio – Sharing Data Sources (aka data source schema)
- Field editing in reports – Looker Studio
- Data Source Version History in Looker Studio
- Community Visualization Access in Looker Studio
- Understanding Data Source Credentials in Looker Studio
- Understanding Data Freshness in Looker Studio
- How to create and configure a data source in Looker Studio
- Looker Studio Aggregation Explained
- How to Edit a Calculated Field in Looker Studio
- Formula Rejection in Looker Studio
- Doing Basic Maths on Numeric Fields via Calculated Fields
Note: Google Data Studio is now known as Looker Studio.
If a data field in your data source can have only one of the two possible values: true or false then you should use the Boolean field while setting up your data source schema.
For example, consider the following Google Sheets data source:
Here the field ‘Is Revenue > Forecasted Revenue’ can have only two possible values: TRUE or FALSE.
For Google Sheets, the values TRUE and FALSE are of type boolean.
So, when setting up the data source schema, we should set the data type of the field ‘Is Revenue > Forecasted Revenue’ to ‘Boolean’:
This seems pretty straightforward, doesn’t it?
But here is the thing.
This is not going to work.
When you create a report from this data source schema which uses the ‘Is Revenue > Forecasted Revenue’ field, you will get a system error:
That happened because Looker Studio did not recognize the boolean values stored in Google Sheets as a boolean value. Instead, it treats these boolean fields as ‘text’ fields:
No matter how you store boolean values in Google Sheets (whether as true/false, TRUE/FALSE, 0/1, yes/no), Looker Studio won’t recognize them as boolean values.
So, if you want to use a boolean field in Looker Studio then you would need to create and use a calculated metric.
Follow the steps below:
Step-1: Navigate to your data source schema editor and then change the data type of the field ‘Is Revenue > Forecasted Revenue’ from boolean to text:
Step-2: At the top right-hand side of your data source schema editor, find and click on the ‘ADD A FIELD’ button to create a new calculated field:
Step-3: Enter the name of your new calculated field. For example: ‘[NEW] Is Revenue > Forecasted Revenue’:
Step-4: Type the following text in the ‘Formula’ field:
case when
followed by a white space:
Step-5: Hover your mouse over the field ‘Is Revenue > Forecasted Revenue’ then click on the + button:
After clicking on the + button, your formula field would look something like the one below:
Step-6: Enter a white space and then type the following text in your formula field:
= “TRUE” then true else false end
Make sure you see the green-colored checkmark at the bottom of the formula box.
This checkmark indicates that you have entered the formula correctly.
If the formula that you have entered is not correct then you will see this symbol instead of the green checkmark.
I entered the following formula:
case when Is Revenue > Forecasted Revenue = “TRUE” then true else false end
This means if the value of the field ‘Is Revenue > Forecasted Revenue’ is ‘TRUE’ then return true.
Otherwise, return false.
The following formula won’t work:
In Looker Studio, you can compare a dimension or metric only with a literal value.
Here we are comparing the ‘Revenue’ dimension with another dimension called ‘Forecasted Revenue’ via the logical expression: Revenue > Forecasted Revenue
Step-7: Click on the ‘FORMAT FORMULA‘ button to make your formula more readable:
After clicking on the ‘FORMAT FORMULA‘ button your formula would look like the one below:
Step-8: Click on the ‘Save’ button.
Step-9: Now click on ‘All Fields’ in order to navigate back to the data source schema editor:
You should now see the new calculated field, listed in your data source schema:
Note: All calculated fields have got this ‘fx’ symbol through which you can easily spot them.
Now when you create a report based on this data source schema which uses the new calculated field, it would look like the one below:
Following is a short video that shows how I created the calculated field and then used it in my report:
Other articles on Looker Studio
- Looker Studio Alternative – Whatagraph
- Looker Studio Parameters explained with examples
- Looker Studio Number Formats / Data Types
- How to Change Language in Looker Studio
- Looker Studio Date Format and Time Explained
- Looker Studio Tutorial with FREE PDF ebook
- Looker Studio Functions, Formulas Tutorial
- Looker Studio Page Navigation Tutorial
- Understanding Report Editor in Looker Studio
- Best practices for creating a report in Looker Studio
- How to share reports in Looker Studio
- Seven methods to create a new report in Looker Studio
- Looker Studio Report Tutorial
- How to invite people to view or edit a report in Looker Studio
- How to share the link of your report in Looker Studio
- Schedule email delivery of a report in Looker Studio
- How to download Looker Studio report as PDF
- How to embed a Looker Studio report on a website
- Guide to Data Types in Looker Studio
- Image function in Looker Studio
- Image Link data type in Looker Studio
- Image data type in Looker Studio
- Looker Studio Geo Map – Latitude Longitude
- Why You Should Avoid Using Functions and Calculated Fields in Looker Studio
- Looker Studio Calculated Fields Tutorial
- Working with the Text data type in Looker Studio
- The Data Set Configuration Error in Looker Studio
- Data Source Fields in Looker Studio – Tutorial
- Refresh data source schema fields in Looker Studio
- Looker Studio Data Sources – Tutorial
- Looker Studio Dimension vs Metric
- How to filter by email in Looker Studio
- Looker Studio – Sharing Data Sources (aka data source schema)
- Field editing in reports – Looker Studio
- Data Source Version History in Looker Studio
- Community Visualization Access in Looker Studio
- Understanding Data Source Credentials in Looker Studio
- Understanding Data Freshness in Looker Studio
- How to create and configure a data source in Looker Studio
- Looker Studio Aggregation Explained
- How to Edit a Calculated Field in Looker Studio
- Formula Rejection in Looker Studio
- Doing Basic Maths on Numeric Fields via Calculated Fields
My best selling books on Digital Analytics and Conversion Optimization
Maths and Stats for Web Analytics and Conversion Optimization
This expert guide will teach you how to leverage the knowledge of maths and statistics in order to accurately interpret data and take actions, which can quickly improve the bottom-line of your online business.
Master the Essentials of Email Marketing Analytics
This book focuses solely on the ‘analytics’ that power your email marketing optimization program and will help you dramatically reduce your cost per acquisition and increase marketing ROI by tracking the performance of the various KPIs and metrics used for email marketing.
Attribution Modelling in Google Analytics and BeyondSECOND EDITION OUT NOW!
Attribution modelling is the process of determining the most effective marketing channels for investment. This book has been written to help you implement attribution modelling. It will teach you how to leverage the knowledge of attribution modelling in order to allocate marketing budget and understand buying behaviour.
Attribution Modelling in Google Ads and Facebook
This book has been written to help you implement attribution modelling in Google Ads (Google AdWords) and Facebook. It will teach you, how to leverage the knowledge of attribution modelling in order to understand the customer purchasing journey and determine the most effective marketing channels for investment.