Creating Google Analytics Custom Channel Groups
Creating Custom Channel Groups within Google Analytics allows your team to quickly understand the role your marketing tactics have in bringing New and Return Visitors to your site. Knowing exactly how customers are coming to your site (and in what order) can be one of the challenges of the digital world, and one of the key roles that Google Analytics plays.
Creating Custom Channel Groups within Google Analytics allows your team to quickly understand the role your marketing tactics have in bringing New and Return Visitors to your site. Knowing exactly how customers are coming to your site (and in what order) can be one of the challenges of the digital world, and one of the key roles that Google Analytics plays. The function of channel grouping is precisely this: to show groups of means by which people reached you.
“Why “groups” of channels and not just use my source / medium reports?”
The Google Analytics channel groups show all people originating from similar sources, making it easier to read data, for example, all those originating from your Remarketing Ads vs Paid Keyword Ads. Normally this comes in as simply Paid Search, however, they have very different strategies and goals behind them.
- What are Google Analytisc Channel Groups used for (Summary)
- What are the default GA CHannel Group settings
- How can you create and customize a “custom channel group (include step by step)”
- Pros and Cons of Channel Groups
- How to get Custom CHannel Groups in GDS, DOMO, (step by step)
- Example Channel Groups (Paid, Earned, Owned ; Clean CHannel Grouping ; Best Practice)
Where to Set Custom Channel
1- Go to settings, 2 - go to views, 3 - find Channel Settings > Channel Grouping
The standard Google Analytics channels are:
– Social: traffic coming from social networks (Twitter, Facebook, Instagram…);
– Direct: when the user types his URL directly in the address bar;
– Organic search: determined by organic means (unpaid), such as search results, for example;
– Paid search: traffic coming from Adwords search network campaigns;
– Display: people who accessed the site through the Google display network;
– E-mail: traffic through links sent by e-mail or determined by e-mail;
– Affiliates: through affiliate website;
– Reference: traffic where users clicked on a link from another website;
– Other advertising: people coming from online advertising outside of search and display
Default Channel setting by Google
https://support.google.com/analytics/answer/3297892
Move to “Google, I got this!”
Baseline your Google Analytics Configuration with our 40-point Audit!
Start your Analytics Audit
While these channels may appear to be straightforward categories, Google Analytics groups traffic for a channel based on the source and / or the medium (amongst other dimensions). This means that the quality of the data depends on the good work we do in using UTM’s and other tracking techniques.
For example, traffic can end up being poorly categorized when non-standard tags are used. If you use a non-standard medium for paid search (such as “payperclick” or “paid”), the resulting Sessions will not end in the standard container for the paid search channel. Similarily, if you are simply using “cpc” within your Facebook Ads, chances are that data is coming into the “Paid Search” Cateogory.
Channel Groups are EXTREMELY important in the aim to make analytics easier for the business teams to find what they are looking for. While a clean and efficient UTM strategy is the ultimate goal, making definitions uncomplicated this is not always reality, especially when dealing with historical data.
How to see your Custom Channel Grouping
Acquisition >> All Traffic >> Channel
Social Media
—–DETAIL about how Social Media can be spread across several domains, is not always current, etc. and why we have an expaned list.
If you work with content for Social Media your special channel should be SOCIAL.
This data is generated from advertisements or posts on social media. That is, all traffic coming from Facebook, LinkedIn Instagram (whether they are paid or not) are aggregated in this data. When someone finds your site via a link on social networks, they will be listed as social media on the traffic source. In the case of lesser-known networks, these traffic sources will probably not appear in the Social Media report, but in the Referrals report.
By looking at social networks as an acquisition channel, we can know which social networks are generating the best results within our project and, with the help of the metrics of the social networks themselves, we can understand when it is necessary to invest in ads or not. Just be aware and, of course, cross all possible data sources.
Custom Channel Groups
In addition to the standard, Google Analytics also offers the option to customize your channels. Personalization is interesting in the case of a specific objective, such as a campaign, for example. Thus, it is possible to measure traffic only from the source you have determined. Having this data in hand, adapting your strategy is much easier.
One of the many steps we take to ease the reporting time is create Channel Groups in many ways:
1) As Custom Groups in Google Analytics for quick and highly efficient real-time testing and variations
2) As Custom CASE Dimensions within Data Studio in order to provide historical analysis outside GA
3) As a Default Channel Group once everything is cleaned up
This an Exemple how you can build a CASA Dimension for your business:
CASE
WHEN REGEXP_MATCH (Source, ‘freewayseguros.com|insureone.com|txlowcost.com’) THEN ‘Owned Brands’
WHEN Default Channel Grouping = ‘Affiliates’ OR REGEXP_MATCH (Source, ‘valuepenguin.com’) THEN ‘Affiliates’
WHEN REGEXP_MATCH (Source, ‘fb|instagram’) AND REGEXP_MATCH(Medium, ‘sm|cpc’) THEN ‘Paid Social’
WHEN REGEXP_MATCH (Source, ‘yl’) AND REGEXP_MATCH(Medium, ‘onlinedirectory’) THEN ‘Online Directory’
WHEN Default Channel Grouping = ‘Paid Search’ AND REGEXP_MATCH(Query Match Type, ‘Generic’) THEN ‘Generic Paid Search’
WHEN Default Channel Grouping = ‘Paid Search’ AND REGEXP_MATCH(Query Match Type, ‘Brand’) THEN ‘Branded Paid Search’
WHEN REGEXP_MATCH (Source, ‘GO$|gemini|go$’) AND REGEXP_MATCH(Medium, ‘CPC|cpc|native’) THEN ‘Native Ads’
WHEN REGEXP_MATCH (Medium, ‘cpc’) THEN ‘Other Paid Search’
WHEN Default Channel Grouping = ‘Organic Search’ AND NOT REGEXP_MATCH(Source, ‘google’) THEN ‘Non-Google Organic Search’
WHEN Default Channel Grouping = ‘Organic Search’ AND REGEXP_MATCH(Source, ‘google’) THEN ‘Google Organic Search’
WHEN Default Channel Grouping = ‘Social’ OR REGEXP_MATCH(Campaign, ‘meetedgar’) THEN ‘Social’
WHEN Default Channel Grouping = ‘Email’ THEN ‘Email’
WHEN Default Channel Grouping = ‘Referral’ THEN ‘Referral’
WHEN Default Channel Grouping = ‘Other Advertising’ THEN ‘Other Advertising’
WHEN Default Channel Grouping = ‘Display’ THEN ‘Display’
WHEN Default Channel Grouping = ‘Direct’ THEN ‘Direct’
ELSE ‘Direct’
END
A very good way to start is to know the original CASE dimension from Google. See below:
CASE
WHEN ((Source=”direct” AND Medium=”(not set)”) OR Medium=”(none)”) THEN “Direct”
WHEN Medium=”organic” THEN “Organic Search”
WHEN (Social Source Referral=”Yes” OR REGEXP_MATCH(Medium,”^(social|social-network|social-media|sm|social network|social media)$”)) THEN “Social”
WHEN Medium=”email” THEN “Email”
WHEN Medium=”affiliate” THEN “Affiliates”
WHEN Medium=”referral” THEN “Referral”
WHEN (REGEXP_MATCH(Medium,”^(cpc|ppc|paidsearch)$”) AND Ad Distribution Network!=”Content”) THEN “Paid Search”
WHEN REGEXP_MATCH(Medium,” ^(cpv|cpa|cpp|content-text)$”) THEN “Other Advertising”
WHEN (REGEXP_MATCH(Medium,”^(display|cpm|banner)$”) OR Ad Distribution Network=”Content”) THEN “Display” ELSE “(Other)”
END
This process is both art and science:
ART: what are some of the best ways to split up marketing channels, how is the biz used to seeing it, where do we see the largest variations that should be split up … how should this be taken in effect with a UTM strategy.
SCIENCE: Coordinating all the various landing pages, source, medium, campaigns, Creating the right regular expressions, Cross examining between GA and Custom Dims.
Things to have on mind:
- Order matters, since it’s conditional, order matters. Pay attention about the order you choose your new channels.
- The information is not retroactive, that is, it will only work from that moment on. When analyzing the report in the previous days, the information will still be old.
- According to Google, “… these channel definitions are case-sensitive. When manually tagging URLs, use lowercase tags to ensure Analytics categorizes sessions correctly. For example, email campaigns tagged as Email do not match the system definition for the Email channel”. (google)
- “Not all dimensions allow Google Analytics to query associated cost data. If these dimensions are used in a channel grouping object, the channel grouping cost data cannot be retrieved.”(google)