Google Data Studio Functions, Formulas Tutorial – Looker Studio
Note: Google Data Studio is now known as Looker Studio.
Functions in Looker Studio are formulas that are used to:
- Aggregate data.
- Do mathematical calculations on your data.
- Manipulate time data.
- Manipulate geographic location data.
- Manipulate string data.
Functions make your calculated fields more powerful. They are used inside of calculated fields as a formula.
If you remember, we used the ‘CASE’ function as a formula when dealing with boolean values:
‘CASE’ is just one of the many functions provided by Looker Studio.
Looker Studio provides over 50 functions that you can use inside of calculated fields as a formula.
Following are the typical attributes of a function in Looker Studio
- Every function in Looker Studio has some purpose.
- Every function in Looker Studio has syntax
- All functions expect one or more parameters
- Parameters are listed in the syntax
- All functions return a value
- Almost all functions have certain restrictions regarding how they can be used.
#1 Every function in Looker Studio has some purpose
For example, the ‘CASE’ function is used to create new fields that use conditional logic to determine the field values.
The ‘AVG’ function is used to calculate the average value of a numeric field.
Similarly, the ‘COUNT’ function is used to count the number of items in a field.
Note: You can learn more about the purpose of each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
#2 Every function in Looker Studio has syntax
Syntax defines how a function must be used. It defines how parameters (more about them later) must be used.
For example, the following is the syntax for the CASE function:
CASE
WHEN condition THEN result
WHEN condition THEN result
WHEN condition THEN result
…
ELSE result
END
Following is the syntax for ‘AVG’ function:
AVG(value)
Following is the syntax for ‘COUNT’ function:
COUNT(value)
Note: You can learn more about the syntax of each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
#3 All functions expect one or more parameters
Parameters (also called ‘arguments’) are the input a function expects in Looker Studio. The parameter tells the function of what data to act upon.
Parameters can be field names or expressions.
An expression can be a number, literal text, or a statement that evaluates to a field name in your data source.
Parameters can also provide additional instructions or formatting information.
For example, CASE function expects the following parameters:
- Condition
- Result
- Else result
#1 Condition—It is an expression which evaluates to a boolean value (true or false). Conditions can include dimensions or metrics but not both:
#2 Result – the value to return. It can be a dimension, metric, or literal value:
#3 ELSE result (optional) – It is the default value to return if no other condition is met.
Note(1): When providing parameters, be sure to enclose the literal text in single or double-quotes.
Note(2): You can learn more about the parameters used by each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
Note(3): You can click on the ‘Format Formula’ button, to make your formula more readable.
#4 Parameters are listed in the syntax
All the parameters which the CASE function expect, are listed in the syntax of the CASE function:
CASE
WHEN condition THEN result
WHEN condition THEN result
WHEN condition THEN result
…
ELSE result
END
So if you remember the syntax, you will remember how to use the CASE function.
#5 All functions return a value
For example, ‘CASE’ function returns dimensions or metrics based on conditional expressions.
The ‘AVG’ function returns the average for all values in a field or expression.
Similarly, the COUNT function returns the total number of items in a field or expression.
Note: You can learn more about the values returned by each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
#6 Almost all functions have certain restrictions regarding how they can be used
For example, when using the CASE function you can not compare dimensions to dimensions or metrics to metrics:
In Looker Studio, you can compare a dimension or metric only with a literal value.
Similarly, you can not apply the AVG function or COUNT function to a pre-aggregated field.
Note: You can learn more about such restrictions on each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
More information on each function, including examples, is also available in the formula editor.
When you type a function name in the formula editor, Looker Studio provides information about the function like its syntax, its purpose, and its use case:
The bottom of the formula editor sometimes provides additional information about how a function is being used and how it should be used.
For example, in the screenshot above, the Looker Studio was expecting arguments (Expected arguments, but none were provided).
Types of Looker Studio functions
All of the Looker Studio functions are grouped into the following categories:
- Aggregation functions
- Arithmetic functions
- Date functions
- Geo functions
- Text functions
- Conditional functions
- Miscellaneous functions
Aggregation functions
These functions are used to aggregate data.
Following are examples of aggregation functions:
- AVG : AVG(X)
- COUNT : COUNT(X)
- COUNT_DISTINCT : COUNT_DISTINCT(X)
- MAX : MAX(X)
- MEDIAN : MEDIAN(X)
- MIN : MIN(X)
- PERCENTILE : PERCENTILE(X,N)
- STDDEV : STDDEV(X)
- SUM : SUM(X)
- VARIANCE : VARIANCE(X)
Note: Aggregation functions can not be applied to already aggregated data. This includes most metrics found in Google Analytics and Google Ads. For example, Sessions is already summed in your data set, so the formula SUM(Sessions) will produce an error.
Arithmetic functions
These functions are used to do mathematical calculations on your data.
Following are examples of Arithmetic functions:
- ABS : ABS(X)
- ACOS : ACOS(X)
- ASIN : ASIN(X)
- ATAN : ATAN(X)
- CEIL : CEIL(X)
- COS : COS(X)
- FLOOR : FLOOR(X)
- LOG : LOG(X)
- LOG10 : LOG10(X)
- NARY_MAX : NARY_MAX(X, Y [,Z]*)
- NARY_MIN : NARY_MIN(X, Y [,Z]*)
- POWER : POWER(X, Y)
- ROUND : ROUND(X, Y)
- SIN : SIN(X)
- SQRT : SQRT(X)
- TAN : TAN(X)
Date functions
These functions are used to manipulate time data.
Following are examples of Date functions:
- CURRENT_DATE : CURRENT_DATE([time_zone])
- CURRENT_DATETIME : CURRENT_DATETIME([time_zone])
- DATE : DATE(year, month, day)
- DATE_DIFF : DATE_DIFF(X, Y)
- DATE_FROM_UNIX_DATE : DATE_FROM_UNIX_DATE(integer)
- DATETIME : DATETIME(year, month, day, hour, minute, second)
- DATETIME_ADD : DATETIME_ADD(datetime_expression, INTERVAL integer part)
- DATETIME_DIFF : DATETIME_DIFF(date_expression, date_expression, part)
- DATETIME_SUB : DATETIME_SUB(datetime_expression, INTERVAL integer part)
- DATETIME_TRUNC : DATETIME_TRUNC(date_expression, part)
- DAY : Day(date_expression)
- EXTRACT : EXTRACT(part FROM date_expression)
- FORMAT_DATETIME : FORMAT_DATETIME(format_string, datetime_expression)
- HOUR : HOUR(datetime_expression)
- MINUTE : MINUTE(datetime_expression)
- MONTH : MONTH(date_expression)
- PARSE_DATE : PARSE_DATE(format_string, text)
- PARSE_DATETIME : PARSE_DATETIME(format_string, text)
- QUARTER : QUARTER(date_expression)
- SECOND : SECOND(datetime_expression)
- TODATE : TODATE(X, Input Format, Output Format)
- TODAY : TODAY([time_zone])
- UNIX_DATE : UNIX_DATE(date_expression)
- WEEK : WEEK(Date)
- WEEKDAY : WEEKDAY(Date)
- YEAR : YEAR(Date)
- YEARWEEK : YEARWEEK(Date)
Note: Date functions assume UTC as their timezone. Date functions can optionally take either an input or output (or both) format string.
Geo functions
These functions are used to manipulate geographic location data.
Following are examples of Geo functions:
- TOCITY : TOCITY(X [,Input Format])
- TOCONTINENT : TOCONTINENT(X [,Input Format])
- TOCOUNTRY : TOCOUNTRY(X [,Input Format])
- TOREGION : TOREGION(X [,Input Format])
- TOSUBCONTINENT : TOSUBCONTINENT(X [,Input Format])
Text functions
These functions are used to manipulate string data.
Following are examples of text functions:
- CONCAT : CONCAT(X, Y)
- CONTAINS_TEXT : CONTAINS_TEXT(X, text)
- ENDS_WITH : ENDS_WITH(X, text)
- LEFT_TEXT : LEFT_TEXT(X, length)
- LENGTH : LENGTH(X)
- LOWER : LOWER(X)
- REGEXP_CONTAINS : REGEXP_CONTAINS(X, regular_expression)
- REGEXP_EXTRACT : REGEXP_EXTRACT(X, regular_expression)
- REGEXP_MATCH : REGEXP_MATCH(X, regular_expression)
- REGEXP_REPLACE : REGEXP_REPLACE(X, regular_expression, replacement)
- REPLACE : REPLACE(X, Y, Z)
- RIGHT_TEXT : RIGHT_TEXT(X, length)
- STARTS_WITH : STARTS_WITH(X, text)
- SUBSTR : SUBSTR(X, start index, length)
- TRIM : TRIM(X)
- UPPER : UPPER(X)
Conditional functions
These functions are used to evaluate a certain condition and then return the values.
Following are examples of text functions and their syntax:
- CASE: Its Syntax is like below
CASE
WHEN condition1 THEN result1
[WHEN condition2 THEN result2]
[...]
[ELSE else_result3]
END
- CASE (Simple): Its syntax is like below
CASE input_expression
WHEN expression_to_match1 THEN result1
[WHEN expression_to_match2 THEN result2]
[...]
[ELSE result3]
END
- COALESCE: Returns the first non-missing value found in a list of fields. Its syntax is like below
COALESCE(field_expression[,field_expression, ...])
- IFNull: Returns a result if the input is null, otherwise, returns the input. Its syntax is like below
IFNULL(input_expression, null_result)
- IF : Normal IF condition and its suntax is like below
IF(condition, true_result, false_result)
Miscellaneous functions
Functions that do not fall in any of the below categories come under the ‘miscellaneous functions’ category:
- Aggregation functions
- Arithmetic functions
- Date functions
- Geo functions
- Text functions
- Conditional functions
Following are the examples of miscellaneous functions:
- CAST: CAST : CAST(field_expression AS TYPE)
- HYPERLINK : HYPERLINK : HYPERLINK(URL, link label)
- IMAGE : IMAGE : IMAGE(Image URL, [Alternative Text])
Frequently Asked Questions About Looker Studio Functions, Formulas Tutorial
What are functions in Looker Studio?
Functions in Looker Studio are formulas which are used to manipulate data, aggregate data and do mathematical calculations on data.
Functions make your calculated fields more powerful. They are used inside of calculated fields as a formula.
How many functions does Looker Studio provide?
Looker Studio provides over 50 functions that you can use inside of calculated fields as a formula.
What are the attributes of a function in Looker Studio?
Following are the typical attributes of a function in Looker Studio
– Every function in Looker Studio has some purpose.
– Every function in Looker Studio has syntax
– All functions expect one or more parameters
– Parameters are listed in the syntax
– All functions return a value
– Almost all functions have certain restrictions regarding how they can be used.
What types of functions are available in Looker Studio?
All of the Looker Studio functions are grouped into the following categories:
– Aggregation functions
– Arithmetic functions
– Date functions
– Geo functions
– Text functions
– Miscellaneous functions
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
- How to work with the Boolean field in Looker Studio
- 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.
Functions in Looker Studio are formulas that are used to:
- Aggregate data.
- Do mathematical calculations on your data.
- Manipulate time data.
- Manipulate geographic location data.
- Manipulate string data.
Functions make your calculated fields more powerful. They are used inside of calculated fields as a formula.
If you remember, we used the ‘CASE’ function as a formula when dealing with boolean values:
‘CASE’ is just one of the many functions provided by Looker Studio.
Looker Studio provides over 50 functions that you can use inside of calculated fields as a formula.
Following are the typical attributes of a function in Looker Studio
- Every function in Looker Studio has some purpose.
- Every function in Looker Studio has syntax
- All functions expect one or more parameters
- Parameters are listed in the syntax
- All functions return a value
- Almost all functions have certain restrictions regarding how they can be used.
#1 Every function in Looker Studio has some purpose
For example, the ‘CASE’ function is used to create new fields that use conditional logic to determine the field values.
The ‘AVG’ function is used to calculate the average value of a numeric field.
Similarly, the ‘COUNT’ function is used to count the number of items in a field.
Note: You can learn more about the purpose of each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
#2 Every function in Looker Studio has syntax
Syntax defines how a function must be used. It defines how parameters (more about them later) must be used.
For example, the following is the syntax for the CASE function:
CASE
WHEN condition THEN result
WHEN condition THEN result
WHEN condition THEN result
…
ELSE result
END
Following is the syntax for ‘AVG’ function:
AVG(value)
Following is the syntax for ‘COUNT’ function:
COUNT(value)
Note: You can learn more about the syntax of each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
#3 All functions expect one or more parameters
Parameters (also called ‘arguments’) are the input a function expects in Looker Studio. The parameter tells the function of what data to act upon.
Parameters can be field names or expressions.
An expression can be a number, literal text, or a statement that evaluates to a field name in your data source.
Parameters can also provide additional instructions or formatting information.
For example, CASE function expects the following parameters:
- Condition
- Result
- Else result
#1 Condition—It is an expression which evaluates to a boolean value (true or false). Conditions can include dimensions or metrics but not both:
#2 Result – the value to return. It can be a dimension, metric, or literal value:
#3 ELSE result (optional) – It is the default value to return if no other condition is met.
Note(1): When providing parameters, be sure to enclose the literal text in single or double-quotes.
Note(2): You can learn more about the parameters used by each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
Note(3): You can click on the ‘Format Formula’ button, to make your formula more readable.
#4 Parameters are listed in the syntax
All the parameters which the CASE function expect, are listed in the syntax of the CASE function:
CASE
WHEN condition THEN result
WHEN condition THEN result
WHEN condition THEN result
…
ELSE result
END
So if you remember the syntax, you will remember how to use the CASE function.
#5 All functions return a value
For example, ‘CASE’ function returns dimensions or metrics based on conditional expressions.
The ‘AVG’ function returns the average for all values in a field or expression.
Similarly, the COUNT function returns the total number of items in a field or expression.
Note: You can learn more about the values returned by each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
#6 Almost all functions have certain restrictions regarding how they can be used
For example, when using the CASE function you can not compare dimensions to dimensions or metrics to metrics:
In Looker Studio, you can compare a dimension or metric only with a literal value.
Similarly, you can not apply the AVG function or COUNT function to a pre-aggregated field.
Note: You can learn more about such restrictions on each function from the Google help documentation on each function: https://support.google.com/datastudio/topic/7019880?hl=en&ref_topic=7570421
More information on each function, including examples, is also available in the formula editor.
When you type a function name in the formula editor, Looker Studio provides information about the function like its syntax, its purpose, and its use case:
The bottom of the formula editor sometimes provides additional information about how a function is being used and how it should be used.
For example, in the screenshot above, the Looker Studio was expecting arguments (Expected arguments, but none were provided).
Types of Looker Studio functions
All of the Looker Studio functions are grouped into the following categories:
- Aggregation functions
- Arithmetic functions
- Date functions
- Geo functions
- Text functions
- Conditional functions
- Miscellaneous functions
Aggregation functions
These functions are used to aggregate data.
Following are examples of aggregation functions:
- AVG : AVG(X)
- COUNT : COUNT(X)
- COUNT_DISTINCT : COUNT_DISTINCT(X)
- MAX : MAX(X)
- MEDIAN : MEDIAN(X)
- MIN : MIN(X)
- PERCENTILE : PERCENTILE(X,N)
- STDDEV : STDDEV(X)
- SUM : SUM(X)
- VARIANCE : VARIANCE(X)
Note: Aggregation functions can not be applied to already aggregated data. This includes most metrics found in Google Analytics and Google Ads. For example, Sessions is already summed in your data set, so the formula SUM(Sessions) will produce an error.
Arithmetic functions
These functions are used to do mathematical calculations on your data.
Following are examples of Arithmetic functions:
- ABS : ABS(X)
- ACOS : ACOS(X)
- ASIN : ASIN(X)
- ATAN : ATAN(X)
- CEIL : CEIL(X)
- COS : COS(X)
- FLOOR : FLOOR(X)
- LOG : LOG(X)
- LOG10 : LOG10(X)
- NARY_MAX : NARY_MAX(X, Y [,Z]*)
- NARY_MIN : NARY_MIN(X, Y [,Z]*)
- POWER : POWER(X, Y)
- ROUND : ROUND(X, Y)
- SIN : SIN(X)
- SQRT : SQRT(X)
- TAN : TAN(X)
Date functions
These functions are used to manipulate time data.
Following are examples of Date functions:
- CURRENT_DATE : CURRENT_DATE([time_zone])
- CURRENT_DATETIME : CURRENT_DATETIME([time_zone])
- DATE : DATE(year, month, day)
- DATE_DIFF : DATE_DIFF(X, Y)
- DATE_FROM_UNIX_DATE : DATE_FROM_UNIX_DATE(integer)
- DATETIME : DATETIME(year, month, day, hour, minute, second)
- DATETIME_ADD : DATETIME_ADD(datetime_expression, INTERVAL integer part)
- DATETIME_DIFF : DATETIME_DIFF(date_expression, date_expression, part)
- DATETIME_SUB : DATETIME_SUB(datetime_expression, INTERVAL integer part)
- DATETIME_TRUNC : DATETIME_TRUNC(date_expression, part)
- DAY : Day(date_expression)
- EXTRACT : EXTRACT(part FROM date_expression)
- FORMAT_DATETIME : FORMAT_DATETIME(format_string, datetime_expression)
- HOUR : HOUR(datetime_expression)
- MINUTE : MINUTE(datetime_expression)
- MONTH : MONTH(date_expression)
- PARSE_DATE : PARSE_DATE(format_string, text)
- PARSE_DATETIME : PARSE_DATETIME(format_string, text)
- QUARTER : QUARTER(date_expression)
- SECOND : SECOND(datetime_expression)
- TODATE : TODATE(X, Input Format, Output Format)
- TODAY : TODAY([time_zone])
- UNIX_DATE : UNIX_DATE(date_expression)
- WEEK : WEEK(Date)
- WEEKDAY : WEEKDAY(Date)
- YEAR : YEAR(Date)
- YEARWEEK : YEARWEEK(Date)
Note: Date functions assume UTC as their timezone. Date functions can optionally take either an input or output (or both) format string.
Geo functions
These functions are used to manipulate geographic location data.
Following are examples of Geo functions:
- TOCITY : TOCITY(X [,Input Format])
- TOCONTINENT : TOCONTINENT(X [,Input Format])
- TOCOUNTRY : TOCOUNTRY(X [,Input Format])
- TOREGION : TOREGION(X [,Input Format])
- TOSUBCONTINENT : TOSUBCONTINENT(X [,Input Format])
Text functions
These functions are used to manipulate string data.
Following are examples of text functions:
- CONCAT : CONCAT(X, Y)
- CONTAINS_TEXT : CONTAINS_TEXT(X, text)
- ENDS_WITH : ENDS_WITH(X, text)
- LEFT_TEXT : LEFT_TEXT(X, length)
- LENGTH : LENGTH(X)
- LOWER : LOWER(X)
- REGEXP_CONTAINS : REGEXP_CONTAINS(X, regular_expression)
- REGEXP_EXTRACT : REGEXP_EXTRACT(X, regular_expression)
- REGEXP_MATCH : REGEXP_MATCH(X, regular_expression)
- REGEXP_REPLACE : REGEXP_REPLACE(X, regular_expression, replacement)
- REPLACE : REPLACE(X, Y, Z)
- RIGHT_TEXT : RIGHT_TEXT(X, length)
- STARTS_WITH : STARTS_WITH(X, text)
- SUBSTR : SUBSTR(X, start index, length)
- TRIM : TRIM(X)
- UPPER : UPPER(X)
Conditional functions
These functions are used to evaluate a certain condition and then return the values.
Following are examples of text functions and their syntax:
- CASE: Its Syntax is like below
CASE WHEN condition1 THEN result1 [WHEN condition2 THEN result2] [...] [ELSE else_result3] END
- CASE (Simple): Its syntax is like below
CASE input_expression
WHEN expression_to_match1 THEN result1
[WHEN expression_to_match2 THEN result2]
[...]
[ELSE result3]
END
- COALESCE: Returns the first non-missing value found in a list of fields. Its syntax is like below
COALESCE(field_expression[,field_expression, ...])
- IFNull: Returns a result if the input is null, otherwise, returns the input. Its syntax is like below
IFNULL(input_expression, null_result)
- IF : Normal IF condition and its suntax is like below
IF(condition, true_result, false_result)
Miscellaneous functions
Functions that do not fall in any of the below categories come under the ‘miscellaneous functions’ category:
- Aggregation functions
- Arithmetic functions
- Date functions
- Geo functions
- Text functions
- Conditional functions
Following are the examples of miscellaneous functions:
- CAST: CAST : CAST(field_expression AS TYPE)
- HYPERLINK : HYPERLINK : HYPERLINK(URL, link label)
- IMAGE : IMAGE : IMAGE(Image URL, [Alternative Text])
Frequently Asked Questions About Looker Studio Functions, Formulas Tutorial
What are functions in Looker Studio?
Functions in Looker Studio are formulas which are used to manipulate data, aggregate data and do mathematical calculations on data.
Functions make your calculated fields more powerful. They are used inside of calculated fields as a formula.
How many functions does Looker Studio provide?
Looker Studio provides over 50 functions that you can use inside of calculated fields as a formula.
What are the attributes of a function in Looker Studio?
Following are the typical attributes of a function in Looker Studio
– Every function in Looker Studio has some purpose.
– Every function in Looker Studio has syntax
– All functions expect one or more parameters
– Parameters are listed in the syntax
– All functions return a value
– Almost all functions have certain restrictions regarding how they can be used.
What types of functions are available in Looker Studio?
All of the Looker Studio functions are grouped into the following categories:
– Aggregation functions
– Arithmetic functions
– Date functions
– Geo functions
– Text functions
– Miscellaneous functions
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
- How to work with the Boolean field in Looker Studio
- 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.