<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Marketing Analytics and Marketing Automation Blog | marqeu</title>
	<atom:link href="https://marqeu.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://marqeu.com/blog/</link>
	<description>marqeu &#124; All Things Marketing Analytics and Marketing Automation</description>
	<lastBuildDate>Fri, 08 Mar 2024 22:11:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.2</generator>
	<item>
		<title>Dynamic Web Scraping with Python, Pandas and DuckDB</title>
		<link>https://marqeu.com/python-web-scraping/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=python-web-scraping</link>
					<comments>https://marqeu.com/python-web-scraping/#respond</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Tue, 05 Mar 2024 23:01:57 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=4261</guid>

					<description><![CDATA[<p>The post <a href="https://marqeu.com/python-web-scraping/">Dynamic Web Scraping with Python, Pandas and DuckDB</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="vc_row wpb_row vc_row-fluid krth-dhav-dotted"><div class="wpb_column vc_column_container text-left vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper">
	<div class="wpb_text_column wpb_content_element " >
		<div class="wpb_wrapper">
			<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Ever felt the frustration of wrangling with mountains of data through web scraping? The landscape of marketing technology is constantly growing and #marketing teams are experimenting with new tools that are constantly generating a tons of data. As <a class="app-aware-link " href="https://marqeu.com/marketing-analytics/" target="_self" rel="noopener" data-test-app-aware-link="">#MarketingAnalytics professionals</a>, we constantly juggle data from such tools and sometimes, API connectors just aren&#8217;t available ready-made from tools like Fivetran or Airbyte. In such cases, we have to rely on building a custom Python scripts to either leverage the API of that data source (which is relatively an easier option) or scrape the authenticated web pages with the help of Python libraries like BeautifulSoup and Selenium.</p>
<blockquote style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><p>
Python based web scraping can be a real beast to tame, especially when dealing with massive datasets and dynamic web pages.
</p></blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Join me on a journey where I harness the power of Python, Pandas, DuckDB, and web scraping to not just access data but to convert it into actionable data model that powers a very <a class="app-aware-link " href="https://marqeu.com/nurture/" target="_self" rel="noopener" data-test-app-aware-link="">targeted marketing engagement strategy</a>.</p>
<div class="reader-image-block reader-image-block--full-width">
<figure class="reader-image-block__figure">
<div class="ivm-image-view-model ">
<div class="ivm-view-attr__img-wrapper display-flex"><img fetchpriority="high" decoding="async" id="ember1295" class="ivm-view-attr__img--centered reader-image-block__img evi-image lazy-image ember-view aligncenter" src="https://media.licdn.com/dms/image/D4E12AQGqU_oErwVsYQ/article-inline_image-shrink_1500_2232/0/1709585237111?e=1715212800&amp;v=beta&amp;t=l0OH7mVLBkyz4BwHd71DwUiDsdBtImyvbWlVTA6qi5Q" alt="" width="834" height="280" /></div>
</div>
</figure>
</div>
<p>&nbsp;</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">🕸️ <strong>The Challenge: Scraping a CMS Blog without an API</strong></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">I recently faced this exact dilemma: scraping blog data from our CMS, which lacked an API. My trusty Python script, armed with BeautifulSoup (BS4) and Selenium, was ready for battle. Tackling the dynamic intricacies of web pages, especially in the context of pagination and the dynamic loading of client-side content (thanks to AJAX and JavaScript), posed a distinctive set of hurdles.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">🛠️ <strong>Configuring UserAgent, Sessions, TLS, Referrer, and Chrome options</strong></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Setting up the basic script was a smooth sailing. The excitement kicked in when I started exploring the DOM structure of the web pages, pinpointing the specific HTML tag that housed the data I needed for this project.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The sight when any of my Python scripts first render web scraped data as list item is always such a joy and never gets old. It&#8217;s that satisfying feeling of problem solved!</p>
<pre>driver.find_element(By.TAG_NAME, 'tbody').find_elements(By.CLASS_NAME, 'profile_groups')

load_more = driver.find_element(By.XPATH,  
                                '//*[@id="_profilegroup"]/div[2]/div/div[2]/div/div/button')  
load_more.click()</pre>
<p>&nbsp;</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">🕵️ <strong>The Webpage DOM and the &#8220;Load More&#8221; Conundrum</strong></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">In this case though, the joy of seeing the first set of rows loaded was short-lived! Things got interesting as I hunted down the elusive &#8220;Load More&#8221; button, aiming to grab additional rows dynamically before I can read and store the data in a Pandas DataFrame.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Attempting to load all the data in one go turned out to be a problem, causing memory overload and web page crashes. With thousands of rows, my script started to buckle under the weight of the data.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Clearly this option of first loading all the data on the webpage and then scraping was not going to work. Traditional methods of storing everything in a Pandas DataFrame after full scraping is done or directly writing to a database like Snowflake were simply too resource-intensive.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">🦆<strong> DuckDB comes to rescue with Plan B</strong></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">So, for my Plan B, I devised a strategy to leverage DuckDB. First, I would load the initial batch of rows, scrape the data, and then stash it away in storage. After that, I&#8217;d load the next batch of rows on the webpage and repeat these steps, employing 2 loops. The key differentiator in this approach was to use Pandas DataFrame with a companion, DuckDB for the iterative inserts and continuous updates.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">To handle 2 different loop iterations in resonance, I had to come up with an interesting algorithm because one of the loops in my Python script was running on page load sequence but with every &#8220;Load More&#8221; click, the secondary loop was loading additional rows. These added rows were stitched onto the ongoing sequence from the very start of the webpage load, not kicking off a fresh sequence. While one loop had to kick off anew, the other needed to pick up right where the first loop had left off.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Wrapping my head around and implementing this puzzle piece turned out to be quite a delightful journey!</p>
<blockquote style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><p>
The mighty &#8216;f&#8217; strings came to the rescue here and I could make the XPATH of the key elements dynamic &#8211; &#8220;tr[{counter + 1}]&#8221;.
</p></blockquote>
<pre>if profiles:  
    if len(profiles[starting_point:ending_point]) &gt; 0:  
        logging.info(f'beginning extraction of profile data for iteration no: {i}')  
        for item in profiles[starting_point:ending_point]:   
  
            # company  
            try:  
                item.find_elements(By.XPATH,  
                                   f'//*[@id="_profile"]/div[2]/div/div/div/table/tbody/tr[{counter + 1}]')  
            except NoSuchElementException as err:  
                logging.info(f'could not locate element for company on iteration no. {i}')  
                company = ''  
            else:  
                company = item.find_element(By.XPATH,  
                                            f'//*[@id="_profile"]/div[2]/div[2]/div/table/tbody/tr[{counter + 1}]').text  
  
            # domain  
            try:  
                item.find_element(By.XPATH,  
                                  f'//*[@id="_profile"]/div[2]/div[2]/div/div/table/tbody/tr[{counter + 1}]') 
            except NoSuchElementException as err:  
                logging.info(f'could not locate element for domain on iteration no. {i}')  
                domain = ''  
            else:  
                domain = item.find_element(By.XPATH,  
                                           f'//*[@id="_profile"]/div[2]/div[2]/div/table/tbody/tr[{counter + 1}]').text</pre>
<p>&nbsp;</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">This kind of algorithm and data volumes involve some serious input/output (I/O) action. Using just Pandas DataFrame to store this data incrementally in a CSV file or a database like Snowflake would burn a hole in my resources.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">You see, dynamic and ongoing web scraping Python scripts have a tendency to get shaky, especially when faced with webpage refreshes and shaky internet connections. Given the hefty load of data and the repetitive looping through the loaded rows, I needed a solution to effortlessly fetch and store the data one iteration at a time, considering I had over 7500 iterations on my hands. And here&#8217;s where DuckDB stepped in!</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong><em>🚀 </em></strong><strong>Harnessing DuckDB for Stability in Python-Based Web Scraping</strong></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">As part of my script, I initialized a DuckDB database and created a table with the relevant columns. Once a selenium iteration (as shown above) was finished successfully, I loaded the set of rows scraped into a DataFrame via a list of dictionaries. Once the DataFrame was built, I then inserted all the rows in the DataFrame into DuckDB table and clear out the DataFrame for next set of rows being scraped by Selenium Python script.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The primary objective of using this approach was to avoid the instability associated with Selenium scripts</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">when it comes to scraping a massive database from a dynamic (AJAX / JavaScript) based web page and avoid Snowflake credit usage associated with such I/O operations during the development cycle.</p>
<pre>if company != '':  
  
                try:  
                    str(company).strip()  
                except:  
                    logging.info(f'company name clean-up not possible for iteration {i} and {counter}')  
                else:  
                    company = str(company).strip()  
                try:  
                    str(domain).strip()  
                except:  
                    logging.info(f'domain name clean-up not possible for iteration {i} and {counter}')  
                else:  
                    domain = str(domain).strip()  
                try:  
                    str(title).strip()  
                except:  
                    logging.info(f'title clean-up not possible for iteration {i} and {counter}')  
                else:  
                    title = str(title).strip()  
  
                extract.append(  
                    {      
                        'company': company,  
                        'title': title,  
                        'domain': domain  
                    }  
                )  
  
                logging.info(f'successfully extracted data for profile no: {counter + 1}')  
  
            counter += 1  
            logging.info(f'successfully finished extraction for all profiles data for iteration no: {i}')  
    else:  
        logging.info(f'no profiles found in the iteration no: {i}')  
  
    if len(contact_extract) &gt; 0:  
        df = pandas.DataFrame(data=extract)  
  
        load_duckdb(df)  
  
        logging.info(f'successfully loaded set no: {i} into duckDB.')</pre>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">In the realm of such Python web scraping scripts that stretch over hours,</p>
<blockquote style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><p>
custom Python logs emerged as unsung heroes, not only in keeping tabs on the script&#8217;s ongoing status but also proving handy when things go south,
</p></blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">and Python scripts decide to play hide and seek with errors. In a project-first, I opted to store these logs in a separate JSON file, just for the fun of it.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">If only, I could do the same with SQL CTEs!</p>
<div class="reader-image-block reader-image-block--full-width">
<figure class="reader-image-block__figure">
<div class="ivm-image-view-model ">
<div class="ivm-view-attr__img-wrapper display-flex"><img decoding="async" id="ember1320" class="ivm-view-attr__img--centered reader-image-block__img evi-image lazy-image ember-view aligncenter" src="https://media.licdn.com/dms/image/D4E12AQH58J8jL4MIQw/article-inline_image-shrink_1500_2232/0/1709592958137?e=1715212800&amp;v=beta&amp;t=N8fGLua2ipu3WlaYidIf2rKUrNi2YvG1-m0GqW0WOtw" alt="" width="703" height="298" /></div>
</div>
</figure>
</div>
<p>&nbsp;</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">🧹 <strong>Seamless Data Transition and Cleanup in Pandas</strong></p>
<blockquote style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><p>
After finishing up the scraping process, I effortlessly brought all the data back from DuckDB into a DataFrame with just one line of code.
</p></blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">From there, it was business as usual, employing the familiar tools of Pandas to tidy up and normalize the data. While I would like to handle all the data cleanup and normalization within DuckDB (or Polars for that matter) someday, I&#8217;m currently relishing the benefits of blending the best of both worlds.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">💰 <strong>Optimizing Snowflake Costs with Python-DuckDB Alchemy</strong></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">After the data was transformed, I turned to SQLAlchemy to seamlessly dispatch it to a Snowflake table. Once settled in Snowflake, the next step involved</p>
<blockquote style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><p>
transferring this dataset to Marketo, a move facilitated by a Reverse ETL process utilizing Census.
</p></blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Throughout this entire process, especially in the development cycle, it marked the first instance where I had to tap into Snowflake credits.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">🌐 <strong>The Power and Promise of DuckDB</strong></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Cost optimization is currently a key focus for every organization when it comes to Snowflake, and instances like these showcase how Python, coupled with the prowess of an OLAP database like DuckDB (harnessing the unlimited power of M2 Macs), can play a vital role. While I had been casually experimenting with DuckDB for some random testing use cases,</p>
<blockquote style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><p>
DuckDB&#8217;s robustness, simplicity, and particularly its Python API and integration with Pandas blew me away.
</p></blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">This implementation served as my inaugural semi-professional venture with DuckDB, as it&#8217;s not a script in constant motion via AirFlow or Prefect. Excited to delve deeper into leveraging DuckDB for more such use cases involving extensive development iterations and massive data I/O operations.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">🤝 <strong>Join the Conversation</strong></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Have a similar use case or challenges to share? I&#8217;m eager to dive into new data frontiers. Let&#8217;s exchange insights and push the boundaries of what Python, Pandas, and DuckDB can achieve in the dynamic landscape of #MarketingAnalytics.</p>

		</div>
	</div>
</div></div></div></div>
<p>The post <a href="https://marqeu.com/python-web-scraping/">Dynamic Web Scraping with Python, Pandas and DuckDB</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/python-web-scraping/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Modern Lead Scoring &#8211; The Data Driven Approach</title>
		<link>https://marqeu.com/modern-lead-scoring/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=modern-lead-scoring</link>
					<comments>https://marqeu.com/modern-lead-scoring/#respond</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Wed, 12 Apr 2023 20:58:07 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=4217</guid>

					<description><![CDATA[<p>The post <a href="https://marqeu.com/modern-lead-scoring/">Modern Lead Scoring &#8211; The Data Driven Approach</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="vc_row wpb_row vc_row-fluid krth-dhav-dotted"><div class="wpb_column vc_column_container text-left vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper">
	<div class="wpb_text_column wpb_content_element " >
		<div class="wpb_wrapper">
			<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Modern Lead scoring is an essential aspect of modern data-driven B2B marketing, which helps sales and marketing teams to actively prioritize their leads based on their likelihood to convert those qualified leads into revenue-generating opportunities. With the right <a href="https://marqeu.com/lead-scoring/">lead-scoring strategy</a>, marketers can <strong>identify the most promising leads, rank their likelihood to convert based on an exhaustive group of data points and optimize their efforts to maximize conversions and revenue</strong>. Lead scoring is the process of assigning a numerical value to a lead based on its attributes, behavior, and other relevant factors.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a href="https://marqeu.com/about-us/">At marqeu</a>, our approach to lead scoring is powered by a <a href="https://marqeu.com/marketing-analytics/">detailed analytics and reporting process</a> to enable marketers to continuously track and fine-tune the lead scoring model on an ongoing basis. We tend to lean towards the other side of “set-and-forget” when it comes to managing lead-scoring algorithms. Designing the lead scoring framework is an extremely data-intensive step-by-step process where alignment with sales teams is extremely important.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">To make the most of such data points provided by the <a href="https://marqeu.com/marketing-techstack/">modern marketing tech stack,</a></p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">we have designed a 3-dimensional lead scoring framework, which takes into account the demographics and behavior of the engaged leads to decide when they are ready for a conversation with sales teams and when it is appropriate to move such leads into nurture streams.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Both engagement and firmographic scores in turn are derived from a wide range of data sources including responses to both inbound and outbound marketing campaigns (both 1st and 3rd party), website engagements, intent data, etc. A combination of these 2 dimensions gives the 3rd dimension, which is the actual lead score that is used to prioritize engaged leads for follow-up by the sales or telemarketing teams.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Our approach to lead scoring is powered by a completely customizable algorithm that is built to make sure that every lead, which engages with marketing campaigns is qualified on the 2 fronts.</p>
</blockquote>
<p><img decoding="async" class=" wp-image-3289 aligncenter" src="https://marqeu.com/wp-content/uploads/2018/06/lead-analysis-300x140.jpg" alt="leadanalysis-marqeu" width="692" height="323" srcset="https://marqeu.com/wp-content/uploads/2018/06/lead-analysis-300x140.jpg 300w, https://marqeu.com/wp-content/uploads/2018/06/lead-analysis-768x359.jpg 768w, https://marqeu.com/wp-content/uploads/2018/06/lead-analysis.jpg 985w" sizes="(max-width: 692px) 100vw, 692px" /></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Once the individual scores across these dimensions are calculated, <strong>we then roll up these scores into quadrants by normalizing them into 4 categories to make it easy for the sales teams to prioritize the follow-up activity</strong>. These 4 categories are:</p>
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li style="list-style-type: none;">A: hot leads. These are highly engaged leads that are closely aligned with the ideal buying persona. These leads hold the highest priority when it comes to follow-up by sales teams.</li>
<li style="list-style-type: none;">B: highly engaged leads which are not very closely aligned with the ideal buyers’ persona</li>
<li style="list-style-type: none;">C: closely aligned persona leads (from target accounts) with the ideal buyer persona who may not be highly engaged or showing buying behavior yet.</li>
<li style="list-style-type: none;">D: Last priority is the leads in the marketing database who may or may not have engaged yet.</li>
</ul>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We have been building advanced lead-scoring algorithms for the past 8+ years as part of our <a href="https://marqeu.com/advanced-analytics/">advanced marketing analytics service offerings</a> for some of the most innovative organizations and this priceless experience has equipped us with unparalleled expertise when it comes to building custom lead-scoring algorithms. In collaboration with our diverse customer base and phenomenal <a href="https://marqeu.com/growth-marketing/">growth minded marketing leaders</a>, we have developed algorithms and frameworks that are easy to implement, understand and more importantly, they empower marketers when it comes to discovering insights about what tactics, and channels are helping generate qualified leads that have a higher probability to convert to qualified sales opportunities at faster rates. Based on our experience,</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">here are the core capabilities and features of best-in-class lead-scoring algorithms:</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>Deep understanding of the buyer persona their actions and engagements that signal to buy intent.</strong> Consensus with the sales organization on these definitions and their weightage when it comes to lead scores. The first step in designing the lead scoring program is to define an ideal customer profile (ICP). This includes identifying the key characteristics of the ideal customer, such as industry, company size, location, job title, and more. By defining the ICP, we can ensure that we are targeting the right leads likes of which have shown the highest probability of driving qualified sales opportunities.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>Robust data gathering in marketing automation platforms, CRM, and other platforms in the tech stack</strong>. We start with identifying the deals that the organization has closed over the past 2 years. Within those accounts, we identify the contacts that have engaged with the marketing campaigns, key decision makers, and “contact roles”. We then analyze their marketing engagement history and their firmographic data to put together the ICP. There can be multiple ICPs.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">A heat-map view of the marketing engagements by the ICP helps us understand which marketing channels and offers are resonating the most with the ICPs.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We also review how the organization has been weighing those offers and channels in the existing lead-scoring algorithms to understand to what extent the existing algorithms are aligned with the behavior of the ICPs from won accounts. This exercise helps set the baseline of the performance and provides key data points to work with when it comes to optimizing the lead scoring model.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>Intent data can be a powerful tool for improving the accuracy and effectiveness of lead-scoring algorithms.</strong> Intent data refers to information about a lead’s behavior and activities that suggest they are in the market for a particular product or service. Tools like Demandbase, and 6Sense have been providing this information about the intent and buying signals to help augment the behavior/firmographics data that is being used in the traditional lead scoring algorithms. Intent data can help identify leads who are actively researching the service offerings, indicating a higher level of intent to purchase. By prioritizing such leads in lead scoring algorithms, we can ensure that the sales team focuses their efforts on the most promising prospects.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Given the growing <a href="https://marqeu.com/abm/">focus on ABM across all the marketing organizations</a>, we also recommend taking into consideration leads from the target/ABM accounts</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">who are engaging directly with the campaigns or have been identified via intent data to be of higher values based on the alignment with ICP. These leads are usually scored higher to make sure sales reps are alerted of any engagements from such leads/accounts.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>Designing workbooks and simulations to demonstrate how the proposed lead scoring would work in the real world</strong> to measure the impact of every single data point towards qualifying a lead for follow-up with the sales teams – we have seen these simulations do the magic when the stakeholders can see tangibly lead scoring work. Building, testing, and deploying the actual lead scoring model in a marketing automation system.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><img loading="lazy" decoding="async" class="aligncenter wp-image-4235" src="https://marqeu.com/wp-content/uploads/2023/04/ml_lead_scoring_marqeu-300x180.jpeg" alt="ml_lead_scoring_marqeu" width="700" height="419" srcset="https://marqeu.com/wp-content/uploads/2023/04/ml_lead_scoring_marqeu-300x180.jpeg 300w, https://marqeu.com/wp-content/uploads/2023/04/ml_lead_scoring_marqeu-1024x613.jpeg 1024w, https://marqeu.com/wp-content/uploads/2023/04/ml_lead_scoring_marqeu-768x460.jpeg 768w, https://marqeu.com/wp-content/uploads/2023/04/ml_lead_scoring_marqeu.jpeg 1270w" sizes="(max-width: 700px) 100vw, 700px" /></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a href="https://marqeu.com/training/">Documentation and training</a> for the teams so that they have a complete understanding of the lead scoring algorithm and can differentiate between the leads with different scores.<br />
Regular review of the models by advanced data analysis of the scored leads (and their follow-ups) to continuously optimize the system and align with the feedback from the sales executives on the qualified leads.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Machine learning and AI algorithms can analyze large amounts of data and identify patterns that humans may not be able to detect. This can improve the accuracy of lead scoring by identifying the most relevant and engaged leads,</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">even if they exhibit unexpected behaviors. <strong>Predictive scoring uses historical data and machine learning algorithms to predict which leads are most likely to convert into customers.</strong> This can help sales teams prioritize their efforts and focus on leads that are most likely to result in closed deals.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We are always on the lookout for inputs and examples from the marketing community to keep adding value for our customers. We welcome inputs from other growth marketing leaders and marketing operations practitioners around the approach to lead scoring strategy at their organizations. What data points are you using to score leads and track the performance of qualified leads through the funnel at your organizations?</p>

		</div>
	</div>
</div></div></div></div>
<p>The post <a href="https://marqeu.com/modern-lead-scoring/">Modern Lead Scoring &#8211; The Data Driven Approach</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/modern-lead-scoring/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>PLG and Customer Activation &#8211; New Paradigm in Marketing Analytics</title>
		<link>https://marqeu.com/plg/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=plg</link>
					<comments>https://marqeu.com/plg/#respond</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Mon, 03 Oct 2022 21:40:22 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=4181</guid>

					<description><![CDATA[<p>PLG and customer activation powered by advanced marketing analytics capabilities are among the top priorities for all business and growth marketing leaders across B2B SaaS organizations. The primary focus of the marketing analytics work that we have been doing with some of the most forward-looking B2B marketing analytics leaders across SaaS organizations is being augmented[...]</p>
<p>The post <a href="https://marqeu.com/plg/">PLG and Customer Activation &#8211; New Paradigm in Marketing Analytics</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">PLG and customer activation powered by advanced marketing analytics capabilities are among the top priorities for all business and <a href="https://marqeu.com/growth-marketing/">growth marketing leaders</a> across B2B SaaS organizations.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a href="https://marqeu.com/marketing-analytics/">The primary focus of the marketing analytics work</a> that we have been doing with some of the most forward-looking <a href="https://marqeu.com/revenue-cmo/">B2B marketing analytics leaders</a> across SaaS organizations is being augmented with the PLG analytics frameworks.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">PLG analytics is now seen as the part of the core B2B GTM analytics frameworks</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">that include metrics like c<a href="https://marqeu.com/demand-waterfall-conversion-rates/">ohort-based funnel conversions</a>, campaigns performance, tracking against funnel goals, marketing attribution, pipeline influence tracking, and database segmentation.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong><em>The emergence of PLG as the core GTM strategy has been a game changer not only for the B2B SaaS organizations from the GTM perspective but it has opened up exciting new possibilities for the marketing analytics teams. </em></strong></p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">PLG is built on the foundation of advanced data analytics capabilities. To drive a successful PLG strategy, marketing and growth teams rely on the analytics teams to understand product engagement data.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a href="https://marqeu.com/advanced-analytics/">This event based product engagement data is made available in the data lakes and the data warehouses to be cross-hatched with the wider sales and marketing data</a> to drive engaging product experience with the users &#8211; the essence of PLG strategy. The growing body of work that we have been doing in the past few months has been focused on PLG analytics and customer activation. Although we are very early in our journey towards building our core competency in PLG analytics, this post is an attempt to <strong>document our learnings and share the work that we have been doing with some of the most exciting B2B SaaS organizations that have adopted PLG.</strong></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">PLG is a new paradigm.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">In PLG model, the GTM motion relies on the product to drive growth. This is accomplished by letting the users rather than the decision-makers experience the value of the product. The intent is to provide limited friction within the product and let the users discover how the product will help them do their job more effectively on a day-to-day basis.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><em><strong>PLG GTM motion positions the product as the main driver of customer acquisition, activation, retention, and expansion.</strong></em> Most of the B2B SaaS organizations with data-driven marketing and GTM teams are shifting to PLG as their core go-to-market motion to accelerate growth. To date, about 25% of the organizations have some form of PLG motion in play. Given the success rate of the PLG motion at companies like Slack, Twilio, Dropbox, Airtable, Notion, there is a huge opportunity for the organizations to adopt the PLG model.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Strong GTM and marketing analytics capabilities are the <strong>core competencies that define the success of a PLG model</strong>. Capturing and analyzing a wide breadth of data points and metrics to understand how customers are engaging with the product and how they are deriving value for their businesses is critical to the success of PLG.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">PLG takes marketing analytics to a whole new level. PLG presents a new set of metrics that define the success of the approach, and provide the needed intelligence for delivering an engaging customer experience and for continuous optimization of the strategy. <a href="https://marqeu.com/advanced-analytics/">Most modern B2B marketing organizations track the key metrics</a> (including funnel performance and revenue metrics) that define the foundation of how marketing and sales teams operate on a day-to-day basis, measure and optimize performance.</p>
<p><a href="https://marqeu.com/marketing-analytics/"><img loading="lazy" decoding="async" class=" wp-image-4190 aligncenter" src="https://marqeu.com/wp-content/uploads/2022/10/plg_marketing_analytics_infrastructure_marqeu-300x154.png" alt="lg_marketing_analytics_infrastructure" width="833" height="428" srcset="https://marqeu.com/wp-content/uploads/2022/10/plg_marketing_analytics_infrastructure_marqeu-300x154.png 300w, https://marqeu.com/wp-content/uploads/2022/10/plg_marketing_analytics_infrastructure_marqeu-1024x525.png 1024w, https://marqeu.com/wp-content/uploads/2022/10/plg_marketing_analytics_infrastructure_marqeu-768x394.png 768w, https://marqeu.com/wp-content/uploads/2022/10/plg_marketing_analytics_infrastructure_marqeu-1536x788.png 1536w, https://marqeu.com/wp-content/uploads/2022/10/plg_marketing_analytics_infrastructure_marqeu.png 1868w" sizes="(max-width: 833px) 100vw, 833px" /></a></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a href="https://marqeu.com/marketing-analytics/">Modern marketing technology and scalable data analytics platforms</a> have made it easy to actively track the most detailed product engagements and behavior data within the product platforms. With the right analytics strategy and tools, marketing and growth teams can be empowered with the key insights from detailed product engagement data. This data allows teams to track, measure, and analyze user behavior.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">These key data insights further enable growth teams to run go-to-market experiments that lead to incremental improvements to the user journey and funnel conversions.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><em><strong><a href="https://marqeu.com/revenue-cmo/"> Making data-driven decisions based on user behavior and product engagement </a>is critical to PLG</strong></em>. Behavioral analytics can track every interaction that occurs within the product. Marketing analytics platforms allow analysts to mine this data to provide insights to help growth teams optimize the user journey, and product engagement behavior and further personalize the product experience through intuitive product design. We have been helping the growth teams define and track KPIs to track the performance of their PLG strategy. Key Metrics that are part of core PLG analytics frameworks include:</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>Acquisition/Sign ups:</strong> is the top of the funnel lead generation in PLG model. These are those leads who have signed up for the product rather than just downloaded a piece of content from a 3rd party website. Sign ups are the starting point in the PLG funnel. Tracking acquisitions from sources (inbound vs outbound) and their conversions down the funnel define the success of the PLG strategy.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>PQLs:</strong> Product-qualified leads (PQLs) are activated users who have crossed a threshold of engagement by completing a set of milestones within the product.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">PQLs are those users who have shown enough engagement within the product and have performed certain actions to derive the intended value from the product. These are the users that are then ready for a sales conversation and these have the highest probability of conversion.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>TTV (Time To Value) is an important part of PQL</strong> as it helps provide visibility into the PLG funnel performance and goal attainment. The success of PLG is measured by reduced TTV to enable users to realize the value of the product sooner before they churn.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Defining the “activated” user from data perspective is a critical part of the PQL as the success of PLG strategy depends on tracking the activated users and the performance of all downstream funnel metrics in PLG is dependent on this definition.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Given the breadth and depth of behavioral and engagement data tracking that is available within SaaS products, <em><strong>defining “customer activation” and building data models around it is a monumental project for the analytics teams.</strong></em></p>
<p><a href="https://marqeu.com/advanced-analytics/"><img loading="lazy" decoding="async" class=" wp-image-4195 aligncenter" src="https://marqeu.com/wp-content/uploads/2022/10/plg_analytics_infrastructure-300x211.png" alt="plg_analytics_infrastructure" width="702" height="494" srcset="https://marqeu.com/wp-content/uploads/2022/10/plg_analytics_infrastructure-300x211.png 300w, https://marqeu.com/wp-content/uploads/2022/10/plg_analytics_infrastructure-1024x719.png 1024w, https://marqeu.com/wp-content/uploads/2022/10/plg_analytics_infrastructure-768x540.png 768w, https://marqeu.com/wp-content/uploads/2022/10/plg_analytics_infrastructure-1536x1079.png 1536w, https://marqeu.com/wp-content/uploads/2022/10/plg_analytics_infrastructure.png 2044w" sizes="(max-width: 702px) 100vw, 702px" /></a></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">To begin with, all the product engagement <a href="https://marqeu.com/marketing-analytics/">data is piped from the product into a data lake where it is made available to be cross-hatched</a> with the other data from CRM, marketing, and finance systems. <strong>Depending on the product and industry, the product data usually spans these categories:</strong></p>
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li><strong>Sign ups:</strong> to track the number of users/orgs that are being created in a given time. This data is then combined with a data enrichment provider (like Clearbit, Zoominfo) for additional demographic details of the organizations.</li>
<li><strong>Product Engagement (Events):</strong> data tracks various actions that users take within the product. It is from this events data, we can identify the users who have taken certain actions like the frequency of logins, visits to certain pages with the app/product, certain buttons/links click events, etc. Working with the product managers, we identify those key actions that together would help tag the users/orgs who have completed these actions.</li>
</ul>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">From analytics and data modeling perspective, we first spend time <em><strong>understanding the core database architecture of the product</strong></em>, the key actions/events that are being tracked within the product, and review all the data in the data lake to get a high-level overview.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Once all the raw data is assembled in a data lake, the next step towards building the definition of an activated user is to understand everything about the customers.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We identify the paying customers an organization has and start mining the product engagement data for users/orgs to identify patterns, heat-maps, and clusters of the actions that are most common across all the paying customers.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">This is the critical part of the data modeling towards understanding the “activated users” and in turn defining the threshold for PQLs. Our goal here is to</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">identify all the key attributes of the users that define the tipping point when they are ready to convert and become paying customers.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The outcome of this exercise is a set of metrics with a set of ranges that are provided to the growth and the product teams to further contextualize the data. Summary of such analysis consists of data points, which vary depending on the product engagement data that is being captured and fed into the data lake. Here is one such example of <em><strong>customer product engagement analysis:</strong></em></p>
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li>83% of the users had done actions A, B, and C at the time of conversion.</li>
<li>65% of the users had logged in 5 times per week in the past 3 weeks leading up to conversion.</li>
<li>On average, there are about 4 users in the org at the time of the conversion.</li>
<li>70% of the orgs have connected the app/product with Slack for active notifications.</li>
</ul>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Once the core teams (especially growth and product) align on the definitions of what an ideal “activated” customer looks like the criteria are frozen and it becomes the guiding factor for defining and building the segments of engaged users.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">These segments are built with the sign-ups (users/orgs) who have been showing the highest probability of meeting the criteria of the activated customers based on their engagements. <em><strong><a href="https://marqeu.com/database-segmentation-engine/">This multi-dimensional data mining and analysis work</a> results in building such growth segments of users showing a varying degree of alignment with the definition of the ideal activated customers.</strong> </em>Generally, the number of such growth segments is related to the number of key metrics that are included in the definition (as described above) of the activated customer. For an organization with the definition of the activated customer as described above, these are the possible growth segments of the engaged users that can be built:</p>
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li>Users/orgs who have done only 1 or 2 of the 3 critical actions within the product.</li>
<li>Orgs where in only 50% of the signed-up users are logging in weekly.</li>
<li>Orgs that are over 100 employees but only have 2 users signed up.</li>
<li>Only 40% of the orgs that have more than 3 users have integrated the product with Slack.</li>
</ul>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The core theme in these segments is the product engagement. These segments provide <a href="https://marqeu.com/sales-follow-up-mqls/">actionable insights for the growth teams to leverage them in the campaigns and sales outreach</a> to provide relevant and meaningful context for driving higher conversions. The primary goal for these campaigns is not to drive sales revenue but take actions (experiments, marketing outreach, targeted digital campaigns) to drive higher product engagement and bring each of these segments closer to the ideal activated customer segments. This increase in the alignment with the ideal customer engagement profile in turn drives the sales conversions.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Although PQL and customer activation are the foundations of the PLG analytics, there are 2 other key metrics in the PLG funnel that we have been tracking:</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>Trial conversion rate</strong> &#8211; tracks the percentage of trial users who eventually became paid customers and on average, how long it takes for the conversion (velocity). Tracking and optimizing this leading indicator is critical to have better visibility into pipeline and forecasting.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>Expansion Revenue</strong> &#8211; is the core of the land and expand GTM motion that is driven by PLG. Tracking the additional revenue generated per account is effective to help with the cost-effective expansion strategy and is a key measure for the success of the PLG approach.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">This framework has been our experience so far to further drive the success of PLG initiatives for our customers by taking their marketing analytics capabilities to the next level. It keeps getting more exciting every day!</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We are always on the lookout for inputs and examples from the marketing community to keep adding value for our customers. We welcome the inputs from other growth marketing leaders and analytics practitioners around the approach to PLG strategy at their organizations. What metrics are you using to track the performance of PLG at your organizations? What does the definition of “activated” customer looks like at your organization?</p>
<p>The post <a href="https://marqeu.com/plg/">PLG and Customer Activation &#8211; New Paradigm in Marketing Analytics</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/plg/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Marketing Attribution &#8211; Beginning of a Data Journey</title>
		<link>https://marqeu.com/marketing-attribution/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=marketing-attribution</link>
					<comments>https://marqeu.com/marketing-attribution/#respond</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Sun, 03 Apr 2022 16:23:12 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=4143</guid>

					<description><![CDATA[<p>The ability of a marketing organization to track marketing attribution is often considered an end in itself when it comes to advanced marketing analytics. Every marketing leader takes immense pride in talking about the marketing analytics teams at their organizations when they have implemented attribution tools/frameworks and can provide attribution data either via salesforce.com or[...]</p>
<p>The post <a href="https://marqeu.com/marketing-attribution/">Marketing Attribution &#8211; Beginning of a Data Journey</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The ability of a marketing organization to track marketing attribution is often considered an end in itself when it comes to <a href="https://marqeu.com/advanced-analytics/">advanced marketing analytics</a>. Every marketing leader takes immense pride in talking about the marketing analytics teams at their organizations when they have implemented attribution tools/frameworks and can provide attribution data either via salesforce.com or via in case of more mature analytics teams in platforms like Tableau, Looker, DOMO, etc. Needless to say, marketing attribution is among the elite group of B2B marketing metrics that every <a href="https://marqeu.com/top2-marketing-analytics-priorities/">data-driven marketing leader likes to track</a> and is widely used across most innovative marketing analytics organizations.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The most common goal and outcome of generally available attribution models/tools is the ability for the revenue (both marketing and sales) teams to track the impact of marketing efforts on generating new pipeline and helping accelerate the existing pipeline.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">This is exactly where most of the marketing teams end up dropping the ball. The primary use of the attribution data is mostly limited to tracking how much revenue and pipeline marketing teams are impacting.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a href="https://marqeu.com/advanced-analytics/"><img loading="lazy" decoding="async" class="aligncenter wp-image-4164" src="https://marqeu.com/wp-content/uploads/2022/04/screen_shot-2022-04-03-OGzv1DjU-concentrate-2-300x178.png" alt="marqeu_timeseries_attribution_touchpoints" width="635" height="377" srcset="https://marqeu.com/wp-content/uploads/2022/04/screen_shot-2022-04-03-OGzv1DjU-concentrate-2-300x178.png 300w, https://marqeu.com/wp-content/uploads/2022/04/screen_shot-2022-04-03-OGzv1DjU-concentrate-2-1024x608.png 1024w, https://marqeu.com/wp-content/uploads/2022/04/screen_shot-2022-04-03-OGzv1DjU-concentrate-2-768x456.png 768w, https://marqeu.com/wp-content/uploads/2022/04/screen_shot-2022-04-03-OGzv1DjU-concentrate-2-1536x912.png 1536w, https://marqeu.com/wp-content/uploads/2022/04/screen_shot-2022-04-03-OGzv1DjU-concentrate-2.png 1704w" sizes="(max-width: 635px) 100vw, 635px" /></a></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We live in a world wherein a multitude of marketing tactics and channels are used by organizations to engage with their customers. Given the connected world we live in and how we gather information, for every closed deal, numerous marketing touches are involved from web engagement (visits, clicks) to email engagement, to webinars, e-books, white papers, in-person events, and the list of possible touches goes on and on. While all these touches have a varying degree of influence on the wins but they all come at a cost and it is not possible for any marketing leader to allocate her budget to these different tactics without some insights into how these tactics perform when it comes to winning those deals. Gone are the days when a marketer could just go by what she “felt” was right.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Given the growing pressure on the marketing teams to <a href="https://marqeu.com/marketing-analytics-and-roi/">continuously justify the spending and deliver higher ROI,</a></p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">marketing attribution metrics are among the best available metrics to demonstrate marketing’s quantifiable impact on the pipeline.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Finance and sales organizations expect <a href="https://marqeu.com/revenue-cmo/">revenue marketing leaders to make data-driven decisions</a> when it comes to budget allocation and also within marketing, the leaders increasingly want to feel confident about these decisions because it is these decisions that will help them meet their pipeline KPIs, the ones on which the success of marketers is increasingly being measured against.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">While others see attribution as an end in itself, we see attribution differently.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">For us, <strong>marketing attribution is more of a framework</strong> that opens up the gates to a wealth of information about touch points, marketing engagements, and customer behavior that is very unique to the GTM strategy of an organization.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">This data, if synthesized appropriately with key business outcomes in the focus can be leveraged to provide insights for continuously optimizing marketing execution.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">From a data analytics perspective, <strong>marketing attribution data at its core is nothing more than a framework</strong> for tracking every touchpoint across the customer journey.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">All these touch points from the very first touch (by sales and marketing teams across various channels) to the last touch (till a deal is closed) are organized in a relational database along with the time stamps for when those engagements happened. These touch points are then further related to the different data sources about campaigns, channels, accounts, opportunities, etc. to provide an enriched data source with comprehensive information that can be further mined to derive key insights into <a href="https://marqeu.com/marketing-analytics-and-roi/">customer engagement behavior and marketing campaign conversions.</a></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Some of the most common marketing use cases that I have implemented by leveraging this enriched data include:</p>
<ol style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li>Aggregating the attribution data over a time period across the deals/opportunities to create a cluster chart/heat map <strong>providing visibility into the distribution and conversion across various marketing offers and channels</strong> throughout the deal cycle.</li>
<li>Aggregating the attribution touch points data by different marketing tactics/channels/vendors and combining it with the spend data across different channels (especially digital channels) to <a href="https://marqeu.com/marketing-analytics-and-roi/">track marketing ROI</a>. Remember the questions you get asked from the board like: what was the impact of Facebook ads on pipeline generation last quarter? All those get answered now and on the fly!</li>
<li>Using the insights from these data clusters to <strong>create GTM campaign playbooks</strong> for different industries, persona, and especially for ABM campaigns. You are able to see generalizations and best conversion paths around what campaigns and tactics among the marketing mix drive the highest engagements from decision-makers through different channels and different stages of the funnel.</li>
<li>This attribution dataset provides the richest data with all the marketing engagements and sales touch points laid out in an organized time series format to track the journey of customers throughout the deal cycle along with the details around persona, frequency of engagement at different stages of the deal cycle. These insights are the foundation of <a href="https://marqeu.com/customer-analytics-frameworks/">customer journey analytics frameworks.</a></li>
</ol>
<p>&nbsp;</p>
<p><a href="https://marqeu.com/customer-analytics-frameworks/"><img loading="lazy" decoding="async" class="aligncenter wp-image-3734" src="https://marqeu.com/wp-content/uploads/2019/03/B2B-account-1-1-300x103.png" alt="Customer Journey - marqeu" width="778" height="267" srcset="https://marqeu.com/wp-content/uploads/2019/03/B2B-account-1-1-300x103.png 300w, https://marqeu.com/wp-content/uploads/2019/03/B2B-account-1-1-768x263.png 768w, https://marqeu.com/wp-content/uploads/2019/03/B2B-account-1-1-1024x350.png 1024w, https://marqeu.com/wp-content/uploads/2019/03/B2B-account-1-1.png 1198w" sizes="(max-width: 778px) 100vw, 778px" /></a></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">There are numerous companies dedicated to building attribution models for marketing organizations and many such 3rd party tools work some what well especially for very small organizations that are in very early stages of advanced marketing analytics and have a relatively simple GTM strategy. However, my experience across numerous engagements related to attribution modeling has shown that</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">most of the attribution tools lack one key thing – they are <strong>pre-built models with limited options for customization</strong> and most of the marketing organizations have to align with how the tools work and measure their performance per the pre-built models only.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">I feel that this is a fundamental drawback with out-of-the-box marketing attribution tools with limited options to customize the tools to align them with the GTM strategy of the organizations that end up using them.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">At marqeu, we live by the principle that <strong>marketing should drive how technology enables and empowers it</strong> to be much more impactful and not the other way round.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Across our <a href="https://marqeu.com/marketing-analytics/">marketing analytics focused customer engagements,</a> I have seen customers using very rigid attribution models/algorithms that made them change the way they operate or measure their business. In some cases, these tools were customized to align with the business models but given how rigid most of the tools and methodologies are in the first place, they usually cannot withstand too many customizations and breakdown leading to never-ending “maintenance and support” cycle, that leads to nothing but wastage of time and money for the marketers. I am sure many of the enterprise marketing leaders reading have experienced this first hand.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">At marqeu, I have been building multi-touch attribution models for the past 8+ years as part of <a href="https://marqeu.com/marketing-analytics/">our marketing analytics service offerings</a> for some of the most innovative organizations and this priceless experience has equipped me with unparalleled expertise when it comes to multi-touch attribution. In collaboration with our diverse customer base and phenomenal marketing leaders, I have developed algorithms and frameworks that are easy to implement, understand and more importantly, they empower marketers when it comes to discovering insights about what tactics, channels are driving better returns across the marketing mix and the impact their working is making.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">I have designed <strong>“a marketing-driven approach to multi-touch attribution”</strong> that has a set of guiding principles and parameters as part of this framework.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a href="https://marqeu.com/marketing-analytics/"><img loading="lazy" decoding="async" class="aligncenter wp-image-4159" src="https://marqeu.com/wp-content/uploads/2022/04/marqeu_timeseries_attribution_touchpoints-300x188.png" alt="marqeu_timeseries_attribution_touchpoints" width="651" height="408" srcset="https://marqeu.com/wp-content/uploads/2022/04/marqeu_timeseries_attribution_touchpoints-300x188.png 300w, https://marqeu.com/wp-content/uploads/2022/04/marqeu_timeseries_attribution_touchpoints-1024x642.png 1024w, https://marqeu.com/wp-content/uploads/2022/04/marqeu_timeseries_attribution_touchpoints-768x482.png 768w, https://marqeu.com/wp-content/uploads/2022/04/marqeu_timeseries_attribution_touchpoints-1536x964.png 1536w, https://marqeu.com/wp-content/uploads/2022/04/marqeu_timeseries_attribution_touchpoints.png 1948w" sizes="(max-width: 651px) 100vw, 651px" /></a></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">During our engagements, I review this approach with the marketing teams and further enrich it with the insights that I gather from the marketers around how they operate their business.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">When I am fully armed with the knowledge of how a business operates and aligned with the marketing team on how they would like to attribute the pipeline across each of the tactics in the marketing mix, it is then I turn to technology to start building the attribution model</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">that is designed from the ground-up just to work for the business. <a href="https://marqeu.com/advanced-analytics/">Modern marketing analytics/BI</a> (Tableau, Looker, PowerBI, DOMO)/Data Warehousing (BigQuery, Snowflake, Redshift) platforms have made it easy to make sure data from all the platforms across the marketing tech stack is easily accessible in a central database to allow for building highly customized attribution models in a very short amount of time. In this approach, there is no customization or fixing needed as the model is built from the ground-up just around how an organization runs its business.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Think of this approach as making your “own pizza” approach to multi-touch attribution. This approach of letting business drive the technology definition and implementation has been of great success for all our customers.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We are always on the lookout for inputs and examples from the marketing community to keep adding value for our customers. We welcome the inputs from other marketing leaders and analytics practitioners around the approach to attribution in their organizations? What attribution tools you are using and to what extent the attribution data is being used to further build models for advanced marketing analytics use cases?</p>
<p>The post <a href="https://marqeu.com/marketing-attribution/">Marketing Attribution &#8211; Beginning of a Data Journey</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/marketing-attribution/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Marketing Scorecard &#8211; A CMO’s Trusted Advisor</title>
		<link>https://marqeu.com/marketing-scorecard/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=marketing-scorecard</link>
					<comments>https://marqeu.com/marketing-scorecard/#respond</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Tue, 19 Oct 2021 01:12:23 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=4124</guid>

					<description><![CDATA[<p>Marketing scorecard powered by a comprehensive marketing analytics frameworks has emerged to be the most trusted advisor of a B2B CMO these days. A well designed and intuitive marketing analytics scorecard provides the much needed at-a-glance view of the health of the marketing organization across 2 broad areas: How well the team is pacing towards[...]</p>
<p>The post <a href="https://marqeu.com/marketing-scorecard/">Marketing Scorecard &#8211; A CMO’s Trusted Advisor</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Marketing scorecard powered by a comprehensive marketing analytics frameworks has emerged to be the most trusted advisor of a B2B CMO these days.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">A well designed and intuitive marketing analytics scorecard provides the much needed at-a-glance view of the health of the marketing organization</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">across 2 broad areas:</p>
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li>How well the team is pacing towards the quarterly/monthly goals</li>
<li>How efficiently the team is generating and qualifying the leads through the funnel</li>
</ul>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Data-driven CMOs are increasingly relying on <strong>marketing analytics teams to lead the charge for demonstrating the quantifiable impact marketing organizations are making</strong>. Over the past 10+ years, I have had the privilege of working with numerous data driven marketing organization led by a <a href="https://marqeu.com/revenue-cmo/">revenue focused CMOs and marketing leaders</a>. The one thing that has been</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">consistent across such organizations is their aptitude towards quantitative aspects of marketing (demand generation in particular) and relentless focus on making data driven decisions.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a href="https://marqeu.com/growth-marketing/">They leverage analytics to continuously optimize the execution and demonstrate measurable results</a> with the help of extremely smart marketing analytics competencies that they have built over time. Marketing leaders across such organizations actively engage with the sales and finance teams towards driving top-line revenue.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">All modern revenue marketing organization usually have a catalog of dashboards powered by numerous metrics that help the marketing teams track and understand the performance of the on-going campaigns. With the maturity of marketing analytics competencies at the organizations, there is usually</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">a dedicated CMO dashboard that provides an executive summary of the marketing influence on pipeline and the performance of each of the marketing teams</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">including demand generation, growth marketing, digital marketing, customer marketing, product marketing etc. All these dashboards and the insights they provide are an integral part of the modern marketing organization.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">During my <a href="https://marqeu.com/marketing-analytics/">marketing analytics engagements and conversations with the CMOs</a>, consistently I have been hearing about an ask to provide some sort of a high level summary view &#8211; the score card so as to speak that enables marketing leaders to understand the current state of the marketing performance.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">These inputs helped me design the “marketing scorecard” (a sample shown below) that enables marketing leaders to understand the state of the marketing performance at a glance</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">and it acts as the gateway towards enabling further <a href="https://marqeu.com/5-metrics-marketinganalytics/">drill down into the “how’s and why’s” of campaigns performance that power this scorecard</a>.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><img loading="lazy" decoding="async" class="aligncenter wp-image-4131" src="https://marqeu.com/wp-content/uploads/2021/10/marketing_scorecard_marqeu-1024x684.png" alt="marketing_scorecard_marqeu" width="640" height="427" srcset="https://marqeu.com/wp-content/uploads/2021/10/marketing_scorecard_marqeu-1024x684.png 1024w, https://marqeu.com/wp-content/uploads/2021/10/marketing_scorecard_marqeu-300x200.png 300w, https://marqeu.com/wp-content/uploads/2021/10/marketing_scorecard_marqeu-768x513.png 768w, https://marqeu.com/wp-content/uploads/2021/10/marketing_scorecard_marqeu-1536x1026.png 1536w, https://marqeu.com/wp-content/uploads/2021/10/marketing_scorecard_marqeu.png 1992w" sizes="(max-width: 640px) 100vw, 640px" /></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The approach towards designing this scorecard is inspired by the concepts of “the index in a document” or “the agenda slide (if you will)”. With a thorough understanding of the key metrics and dashboards that are already operational in an organization, the next step is to</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">map these metrics to a summary (aggregate) view of the KPIs that the marketing leaders leverage to confidently demonstrate the impact that their organizations are making.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>This scorecard is interlinked with the key dashboards</strong> so that whenever questions comes up around these summary numbers, the answers are just a few clicks away and the users are able to get to the answers on the fly, in real-time.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Some of the common use cases that are addressed in these score cards include:</p>
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li>We are past the middle of the quarter, how is the attainment looking against our quarterly goals across the funnel?</li>
<li>How has been the <a href="https://marqeu.com/demand-waterfall-conversion-rates/">funnel efficiency (cohort conversions)</a> across different stages of the funnel?</li>
<li>Are some stages of the funnel back logged due to higher volume or some stages are showing lower than expected conversions?</li>
<li>How have been the cycle times (average time needed to move the leads from one stage of the funnel to the other) trending in a given time frame across different funnel stages, region?</li>
<li>Leads from which campaigns are moving through the funnel faster and are converting better?</li>
<li><a href="https://marqeu.com/sales-follow-up-mqls/">Which MQLs are being worked upon by the sales teams faster</a> as compared to other MQLs?</li>
<li>Which campaigns are helping drive new pipeline generation better and which campaigns are helping accelerate the existing pipeline?</li>
</ul>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Modern marketing technology and analytics/BI/Data Warehousing platforms have made it easy to actively track key marketing metrics. <a href="https://marqeu.com/advanced-analytics/">With the right analytics strategy and tools, we work with marketing leaders to empower their teams</a> with these critical data points so that each team member can actively contribute towards fostering a data-driven culture within the organization.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We are always on the lookout for inputs and examples from the marketing community to keep adding value for our customers. We welcome the inputs from other leaders and practitioners around growth the key metrics that leaders are using to demonstrate the impact marketing is making at your organization? What kind of questions do they get from the sales teams? What data points around marketing performance are shared with the c-suite?</p>
<p>The post <a href="https://marqeu.com/marketing-scorecard/">Marketing Scorecard &#8211; A CMO’s Trusted Advisor</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/marketing-scorecard/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Marketing Analytics and Lead Nurturing &#8211; A Strategic Combination</title>
		<link>https://marqeu.com/lead-nurture-analytics/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lead-nurture-analytics</link>
					<comments>https://marqeu.com/lead-nurture-analytics/#respond</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Tue, 31 Aug 2021 12:47:14 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=4099</guid>

					<description><![CDATA[<p>Marketing Analytics and Lead Nurturing is a strategic combination across all revenue marketing organizations. A well-thought-out lead nurture strategy backed by data-driven insights through marketing analytics frameworks is a game-changer. While others see nurturing as a series of emails, we see nurturing differently. For us, nurturing is a data-driven, meticulously planned contextual, and hyper-personalized strategic[...]</p>
<p>The post <a href="https://marqeu.com/lead-nurture-analytics/">Marketing Analytics and Lead Nurturing &#8211; A Strategic Combination</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Marketing Analytics and Lead Nurturing is a strategic combination across all revenue marketing organizations. A well-thought-out <strong><a href="https://marqeu.com/nurture/">lead nurture strategy</a> backed by data-driven insights through <a href="https://marqeu.com/marketing-analytics/">marketing analytics frameworks</a> is a game-changer.</strong> While others see nurturing as a series of emails, we see nurturing differently.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">For us, nurturing is a data-driven, meticulously planned contextual, and hyper-personalized strategic marketing tactic to drive engagement in pursuit of influencing pipeline generation.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Lead Nurturing is an ongoing process, which prepares the engaged leads for sales conversations based on their engagements with the different phases of the nurture campaigns. For the marketing teams, it is critical to have an engaging and relevant nurture strategy customized for different persona who are in different phases of the buying cycle from awareness, consideration, preference to purchase. Nurtures themselves could have different goals ranging from spreading awareness about the product/services through thought leadership, driving engagement with the potential customers about the brand of an organization to accelerating the leads through the funnel.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Given that email messaging and contextual CTAs are the core part of the nurture campaigns, traditionally most marketing organizations have been focused on looking at vanity email metrics (email opens, email clicks, etc.) to track the results of nurture campaigns. As most revenue-focused marketing leaders would agree, these metrics do not cut it anymore when it comes to demonstrating the impact of nurture campaigns on the pipeline. This is where</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">our <a href="https://marqeu.com/advanced-analytics/"><strong>nurture performance analytics frameworks, data models, and dashboards</strong></a> have been extremely helpful at not only showing the impact of the nurture campaigns on the pipeline but at providing valuable insights to the marketing teams when it comes to optimizing the nurture content, offers, cadences, and targeting.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">As part of our <a href="https://marqeu.com/marketing-analytics/">engagement and nurture analytics services</a>, we work with the marketing organization to understand the sales and marketing operating model and the <a href="https://marqeu.com/customer-analytics-frameworks/">buyer’s journey</a>. We then build and <strong>implement nurture analytics data models to provide visibility into understanding the performance of all nurture campaigns across 2 broad areas:</strong></p>
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li>The ability to drive engagement with the contacts added to the nurture campaigns. Opening and clicking a nurture email is a positive indicator of the relevancy and targeting of the nurture campaigns. Our approach has been to go beyond these metrics and <strong>further narrow down the criteria when it comes to tracking the true impact of the nurture campaigns on driving engagement with the contacts who influence pipeline generation.</strong> While the definition of the “engaged” contacts can vary across different companies but broadly it covers these data points:
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li>The number of email engagements in a given time frame (usually past 90 days). Analyzing the frequency and recency of the engagements together is a strong indicator of qualification.</li>
<li>The number of responses to the CTAs in the nurture emails &#8211; the higher the number, the better it is.</li>
<li>The funnel status/stage of the engaged contacts.</li>
<li>The recency of sales conversation and sales activities.</li>
</ul>
</li>
<li>The ability of the nurture campaigns to influence pipeline generation. The importance of demonstrating how marketing activities are impacting the pipeline has grown manifolds in recent times. <strong>With the <a href="https://marqeu.com/5-metrics-marketinganalytics/">pipeline attribution frameworks</a>, marketing teams can quantify the engagements driven by the nurture campaigns across the accounts and relate them to the pipeline generation.</strong> These pipeline correlations of the marketing activities (including nurture campaigns) provide valuable insights when it comes to understanding “when” the new opportunities were created in the marketing engaged accounts and for the accounts with existing opportunities, how marketing campaigns were able to influence deal expansion and accelerate deal closures. Pipeline influence data models also provide <strong>details into the metadata for nurture campaigns</strong>. These granular data points enable detailed comparison analysis among different nurture campaigns to better understand which nurtures are driving engagements across the accounts from different demographics. These insights further help with aligning the content and the CTAs of the nurture campaigns to drive higher engagement.</li>
</ul>
<p><img loading="lazy" decoding="async" class="wp-image-4101 aligncenter" src="https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_content_mapping_marqeu-1024x447.png" alt="lead_nurture_content_mapping_marqeu" width="543" height="237" srcset="https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_content_mapping_marqeu-1024x447.png 1024w, https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_content_mapping_marqeu-300x131.png 300w, https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_content_mapping_marqeu-768x335.png 768w, https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_content_mapping_marqeu-1536x671.png 1536w, https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_content_mapping_marqeu.png 1772w" sizes="(max-width: 543px) 100vw, 543px" /></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The <strong>set of these pipeline-focused KPIs provides insights</strong> to the <a href="https://marqeu.com/growth-marketing/">growth marketing leaders so that they can objectively evaluate the performance</a> of different nurture campaigns, leverage actionable data to continuously optimize the performance, and above all, confidently demonstrate the impact that their campaigns are making on the pipeline. As is demonstrated by this graph (with data till mid-July&#8217;21),</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">we leveraged our nurture marketing analytics frameworks to drive increased engagement and hence pipeline influence for one of our customers,</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">which like most of the B2B marketing organizations have <a href="https://marqeu.com/campaign-execution/">lead nurturing as the core part of their marketing mix.</a></p>
<p><img loading="lazy" decoding="async" class="wp-image-4100 aligncenter" style="text-align: center;" src="https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_engagements_marqeu-1024x594.png" alt="lead_nurture_engagements_marqeu" width="568" height="330" srcset="https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_engagements_marqeu-1024x594.png 1024w, https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_engagements_marqeu-300x174.png 300w, https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_engagements_marqeu-768x446.png 768w, https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_engagements_marqeu-1536x892.png 1536w, https://marqeu.com/wp-content/uploads/2021/07/lead_nurture_engagements_marqeu.png 1764w" sizes="(max-width: 568px) 100vw, 568px" /></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We are always on the lookout for inputs and examples from the marketing community to keep providing unparalleled value for our customers. We welcome the inputs from other marketing, revenue operations leaders, and practitioners around what metrics they are using to demonstrate the impact of nurture campaigns? What challenges do they face when it comes to accessing the data for nurture campaigns and how are they co-relating the nurture engagements with pipeline influence?</p>
<p>The post <a href="https://marqeu.com/lead-nurture-analytics/">Marketing Analytics and Lead Nurturing &#8211; A Strategic Combination</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/lead-nurture-analytics/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Sales Follow-up of the MQLs &#8211; Overlooked Part of Marketing Analytics</title>
		<link>https://marqeu.com/sales-follow-up-mqls/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sales-follow-up-mqls</link>
					<comments>https://marqeu.com/sales-follow-up-mqls/#respond</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Mon, 14 Dec 2020 15:54:43 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=4047</guid>

					<description><![CDATA[<p>MQLs are an important part of the marketing analytics frameworks across most of the modern marketing teams but the sales follow-up of the MQLs is critical. Whether it is lead scoring, database management, or reporting around the performance of the MQLs, marketing teams spend a lot of time and energy at continuously optimizing the performance[...]</p>
<p>The post <a href="https://marqeu.com/sales-follow-up-mqls/">Sales Follow-up of the MQLs &#8211; Overlooked Part of Marketing Analytics</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">MQLs are an important part of the <a href="https://marqeu.com/services/">marketing analytics frameworks</a> across most of the modern marketing teams but the sales follow-up of the MQLs is critical. Whether it is <a href="https://marqeu.com/lead-scoring/">lead scoring</a>, database management, or reporting around the performance of the MQLs,</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">marketing teams spend a lot of time and energy at continuously optimizing the performance of MQLs with the sole purposes of driving higher <a href="https://marqeu.com/demand-waterfall-conversion-rates/">MQL to opportunity conversion</a></p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">the leading indicator for driving pipeline growth. To progress a customer from MQL to SQL stage of the funnel, there is 1 aspect of the MQL performance optimization that most of the marketing and marketing analytics teams either overlook or do not spend nearly enough time at understanding and that</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">set of key metrics is the sales follow-up of the MQLs that are handed over to them.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Beyond the MQLs, B2B organizations are also relying more on sales accepted and qualified leads (SALs/SQLs) now. This increased focus shows more marketing organizations are digging deeper into revenue impact, and want insights into the qualified opportunities that are influenced by the MQLs.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">As the advancement in the <a href="https://marqeu.com/marketing-techstack/">marketing tech stacks</a> and <a href="https://marqeu.com/marketing-analytics/">marketing analytics</a> keeps accelerating at an enormous pace, we can be sure that lead scoring algorithms will keep becoming more sophisticated and smart by leveraging numerous data points with the help of AI and advanced automation across the customer journey. We will continue to discover more <a href="https://marqeu.com/conversation-ready-leads/">sales conversation ready MQLs</a> but</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">unless at the same time we continuously optimize the follow-up strategy around these MQLs, we will not be able to realize the full impact of all the effort that goes into discovering and qualifying the leads that marketing teams generate.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">With the growing number of touches and the share of digital channels during the sales cycle, it is <span style="text-decoration: underline;"><strong>becoming increasingly important to have an efficient follow-up strategy across SDRs/ADRs/BDRs and sales teams.</strong></span> Over the years, the marketing mix has become increasingly diversified (from emails, contents, field events, social, chatbots, etc.) and the growing number of buyers in the buying committees have resulted in lengthened sales cycles across all the segments from SMB to Enterprise. These trends are putting tremendous pressure on sales efficiency. It is taking a lot longer and many more engagements to close a deal irrespective of the deal size, industry, etc.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><img loading="lazy" decoding="async" class="aligncenter wp-image-4054" src="https://marqeu.com/wp-content/uploads/2020/12/MQL-Follow-up-marqeu-1024x626.png" alt="MQL-Follow-up-marqeu" width="656" height="401" srcset="https://marqeu.com/wp-content/uploads/2020/12/MQL-Follow-up-marqeu-1024x626.png 1024w, https://marqeu.com/wp-content/uploads/2020/12/MQL-Follow-up-marqeu-300x183.png 300w, https://marqeu.com/wp-content/uploads/2020/12/MQL-Follow-up-marqeu-768x469.png 768w, https://marqeu.com/wp-content/uploads/2020/12/MQL-Follow-up-marqeu.png 1106w" sizes="(max-width: 656px) 100vw, 656px" /></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">All these new trends around MQL generation and the sales follow-up necessitate the need to better understand the sales feedback on MQLs. Sales/SDR follow-up of MQLs is where the rubber hits the road and the insights gathered from the sales touch points are critical for MQL optimization. Across <a href="https://marqeu.com/advanced-analytics/">all our marketing analytics engagements</a>, understanding SDR follow-up and SAL/SQL qualification of MQLs is the critical aspect of the over-arching lead scoring/MQL and top-of-the-funnel optimization efforts. Key metrics include:</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><span style="text-decoration: underline;"><strong>1) Time it takes for sales to make the first attempt at the MQLs:</strong></span> numerous research studies have established the fact that every 1 day of delay in making the contact with the qualified leads results in the conversion rates falling by up to 30%. Ability to see in real-time the average time it takes by the SDR team in general and an SDR, in particular, to make the first attempt at connecting with the MQLs has proven to be of immense value both for the marketing and SDR/Sales teams. These insights enable marketing teams to:</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">&#8211; <span style="text-decoration: underline;">understand how to time lead creation and routing</span> in the marketing automation platform to make sure SDRs can connect with them promptly.<br />
&#8211; have the <span style="text-decoration: underline;">conversations with the SDRs around the leads that have not been engaged</span> with and are outside the agreed-upon SLAs between the marketing and SDR teams.<br />
&#8211; understand the <span style="text-decoration: underline;">correlations between MQL conversions and SDR outreach</span> to find patterns for matching certain kinds of MQLs with the SDRs to drive the highest conversions.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">These insights have proven super valuable for SDR and sales leadership.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">They can see in real-time through their organization’s data how the delay in engaging with the qualified leads impacts the conversion rates. Seeing is believing, as they say! These insights also help the SDR leadership with the data-driven capacity planning for the efficient staffing of the SDR team to make sure there is enough capacity in the team to manage the in-flow of the MQLs. At the same time, SDR managers can set the goals around adhering to the follow-up SLAs and track the performance of individual SDRs against those goals.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><span style="text-decoration: underline;"><strong>2) Aging of the MQLs with the sales owners:</strong> </span>while the first metric (from above) provides the insights into which MQLs have been followed up by the SDRs, there is always a good number of MQLs that are yet to be followed up. MQL aging provides insights around the MQLs that are waiting in the queue. Depending on how old the MQLs have become and their source, a decision can be made either to bump them up to the SDR queues or include them in a re-engagement campaign to increase the probability of their conversion to qualified opportunities.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><span style="text-decoration: underline;"><strong>3) Number of touches and time it takes to qualify the MQLs</strong> </span>&#8211; these metrics are critical when it comes to goals planning and tracking their attainment. These insights provide valuable inputs towards building effective sequences (with appropriate offers, channels, and their timing) in the sales engagement platforms like Outreach, Salesloft. The insights from these metrics provide important inputs for building contextual customer journeys. The number of days it takes to qualify an MQL into SQL is the key metric that helps both marketing and sales teams alike as they all are charging towards attaining the common goal of pipeline generation.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Based on how many MQLs are already with the SDRs, their conversion ratio, and the time it takes for the ones that convert, teams can predict with a fair degree of confidence the attainment towards quarterly pipeline goals.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The most important part here is that instead of having to wait till the end of the month/quarter, with the goal attainment probabilities, teams have enough time to pull the relevant levers to accelerate execution and MQL generation that would help them get closer to the goals, if not beat them.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><span style="text-decoration: underline;"><strong>4) Cohort comparison of MQLs and SQLs in terms of campaign engagement and lead score:</strong></span> we all know that MQL to SQL conversion will never be 100% as there is some leakage; also stated in the law of thermodynamics (for all of us science nerds!)<br />
From what we have been seeing, the distribution of campaign engagement (or the campaign engagement mix) and the threshold score of MQLs are many times different as compared to that of the corresponding SQLs. MQLs come from all kinds of campaigns and channels but only a part of them get qualified.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Understanding the campaign engagement mix of the qualified MQLs and their score (MQLs can keep engaging and getting higher engagement scores) provides valuable insights for the marketing teams</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">to not only tweak scoring but also use them for last targeted MQL engagement campaigns during the SDR follow-up (pre-SQL) phase for those MQLs who have not engaged with certain campaigns that are part of the SQL campaign engagement mix. This a very efficient way to increase the probability of conversions.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">These SDR/Sales metrics focused on deriving the insights around MQL follow-up have become an integral part of our marketing analytics frameworks to help the marketing teams actively track the follow-up of MQLs and leverage these insights for building contextual campaigns and continuously optimize the lead scoring. We are always on the lookout for inputs and examples from the marketing community to keep adding value for our customers. We welcome the inputs from other marketing leaders and marketing analytics practitioners around how they are tracking the MQLs/marketing leads follow-up by the SDR/Sales teams in their organizations. Apart from the 4 key metrics that we have been tracking, are there any other metrics that would help provide valuable insights into the marketing and SDR teams?</p>
<p>The post <a href="https://marqeu.com/sales-follow-up-mqls/">Sales Follow-up of the MQLs &#8211; Overlooked Part of Marketing Analytics</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/sales-follow-up-mqls/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The Revenue CMO &#8211; Leading the Data Driven Marketing</title>
		<link>https://marqeu.com/revenue-cmo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=revenue-cmo</link>
					<comments>https://marqeu.com/revenue-cmo/#respond</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Sun, 29 Nov 2020 13:13:30 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=4016</guid>

					<description><![CDATA[<p>Among the most interesting trends shaping the modern marketing function is the rise of a new breed of the CMOs called the “Revenue CMO”. The role of the CMO has undergone a radical shift especially in B2B technology companies, which are driving the revolution of this new breed of the CMOs. Revenue CMOs are growth[...]</p>
<p>The post <a href="https://marqeu.com/revenue-cmo/">The Revenue CMO &#8211; Leading the Data Driven Marketing</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Among the most interesting trends shaping the modern marketing function is the rise of a new breed of the CMOs called the “Revenue CMO”. The role of the CMO has undergone a radical shift especially in B2B technology companies, which are driving the revolution of this new breed of the CMOs.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a title="Growth Marketing – Key Priority for CMOs" href="https://marqeu.com/growth-marketing/" target="_blank" rel="noopener noreferrer">Revenue CMOs are growth marketers</a> who are going beyond the traditional marketing execution role.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">They are <a title="Marketing Analytics Services and Implementation" href="https://marqeu.com/marketing-analytics/" target="_blank" rel="noopener noreferrer">leveraging data and analytics to continuously optimize execution</a> and demonstrate measurable results. They actively engage with the sales and finance teams to sign-up for driving top-line revenue for their organizations.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The Revenue CMOs are relentless when it comes to leveraging analytics to validate their plans and demonstrate with numbers the impact their work is making across the organization.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Unprecedented advances in marketing technology and marketing analytics have resulted in growing scrutiny and re-evaluation of the CMO’s role. The CEO needs to be able to turn to a marketing leader that can deliver tangible results in terms of what matters to the CEO most: revenue. These are the kind of marketers CEOs are beginning to rely on for driving growth across the organizations and run marketing as a revenue-generating function. This expectation from the c-suite has been the most important factor that has led to the emergence of the Revenue CMOs.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">I have been working with the CMOs from some of the most innovative companies for over a decade now. I have experienced this transition happening first hand and it has been a fascinating ride. There were times when marketing leaders were all about shaping the brand of the company, driving the brand awareness to promote the value proposition but</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">now <a title="Marketing Analytics and ROI" href="https://marqeu.com/marketing-analytics-and-roi/">marketing leaders are laser-focused on marketing analytics</a></p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">tracking MQLs, how are their organizations trending against the quarterly pipeline goals, marketing attribution methodologies to demand waterfall conversions. These data focused conversations were un-imaginable in traditional marketing just a few years ago.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The most common ask from the Revenue CMOs is to demonstrate the quantifiable impact that their organizations are making on the pipeline.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Given the growing scrutiny around marketing budgets and the asks for returns from the marketing spend, marketing performance insights and marketing analytics not only empower marketing leaders to have data-driven conversations with the c-suite, inspire/reward their teams based on performance but also optimize the execution of their strategy. Key questions that are top of mind for the Revenue CMOs:</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">a) Did we meet our goals both for volume and conversions?</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We have been using <a title="Demand Waterfall Conversion Rates – The Framework" href="https://marqeu.com/cohort-demand-waterfall-conversions/">demand waterfall performance</a> to help answer this question. With our marketing analytics frameworks, we enable real-time visibility into the health of the funnel so that marketing teams can track inquiries, mqls, sqls, sals, and wins across different sales segments, product lines, by different channels, tactics, and campaigns. Cohort based funnel conversions are a key part of evaluating the health of the funnel to get a good read into the quality of the leads flowing into the funnel and discover what kinds of leads are moving faster through the funnel, what the velocity looks like.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">b) How much did we invest and what is the pipeline impact?</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a title="Marketing Analytics and ROI" href="https://marqeu.com/marketing-analytics-and-roi/">Marketing ROI is the most important metric for the Revenue CMO</a>. Finance and sales organizations expect marketing leaders to make smart decisions when it comes to budget allocation and more importantly within the marketing organizations, the leaders increasingly want to feel confident about these decisions because it is these decisions that will help them meet their pipeline goals. This is where multi-touch campaign attribution comes into play and it is the most valuable of all the KPIs as it powers the marketing investment decision making which in turn drives the results for the marketing organization.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">c) What is working in terms of driving the pipeline?</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Driving a new pipeline has always been the most important KPI for any marketing organization. The importance of demonstrating how marketing is impacting the pipeline has grown manifolds in the charter of Revenue CMOs. <a title="Advanced Marketing Analytics Consulting" href="https://marqeu.com/advanced-analytics/">The 2 commonly used metrics that demonstrate the impact of marketing</a> are Marketing Pipeline Acceleration/Influence and New Pipeline Sourcing. With these 2 metrics, organizations can quantify marketing-driven engagement across the accounts and relate them to the impact on pipeline. These pipeline correlations of the marketing activities provide valuable insights when it comes to understanding “when” the new opportunities were created in marketing engaged accounts and for the accounts with existing opportunities, how marketing was able to influence deal expansions and accelerate deal closures.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We are always on the lookout for inputs and examples from the marketing community to keep adding value for our customers. Revenue CMO is still an evolving concept for most of the marketing organizations and especially for the CMOs who have to successfully manage the delicate balance between the traditional CMO role and at the same time lead the culture of data-driven marketing within their organizations.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We welcome the inputs from other marketing leaders and practitioners around how the concept of Revenue CMO is evolving within their organizations. What metrics are top of the mind for the CMOs? How are the Revenue CMOs defining the metrics for tracking marketing’s impact on pipeline and revenue?</p>
<p>The post <a href="https://marqeu.com/revenue-cmo/">The Revenue CMO &#8211; Leading the Data Driven Marketing</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/revenue-cmo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Multi-Dimensional Segmentation Engine &#8211; Beyond the Smart Lists</title>
		<link>https://marqeu.com/database-segmentation-engine/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=database-segmentation-engine</link>
					<comments>https://marqeu.com/database-segmentation-engine/#comments</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Mon, 12 Oct 2020 09:37:37 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=4000</guid>

					<description><![CDATA[<p>Marketing Analytics is a term that has become synonymous with the success of all modern marketing organizations and database segmentation engine is the key part of marketing analytics. The core competency that differentiates the winning organizations is their ability to objectively evaluate the investments that drive the highest engagement and pipeline growth. Whenever the term[...]</p>
<p>The post <a href="https://marqeu.com/database-segmentation-engine/">Multi-Dimensional Segmentation Engine &#8211; Beyond the Smart Lists</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Marketing Analytics is a term that has become synonymous with the success of all modern marketing organizations and database segmentation engine is the key part of marketing analytics.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The core competency that differentiates the winning organizations is their ability to objectively evaluate the investments that drive the highest engagement and pipeline growth.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Whenever the term marketing analytics is mentioned, the first thought and rightly so is in relation to the “performance measurement” aspect of marketing &#8211; the means through which marketing teams are able to demonstrate the impact they are making on the pipeline and revenue growth. However, there is <strong>another critical aspect of marketing analytics and it is related to marketing database management.</strong></p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><a href="https://marqeu.com/database-management/">Marketing Database Management is another core aspect of modern marketing</a> that powers the marketing campaigns to create contextual customer experiences, which influences the buying decisions.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">This customer experience is the key factor that differentiates the high performing and growth-focused marketing organizations. On a day to day basis, marketing teams rely on data base management for so called “list building” efforts for their campaigns. When it comes to segmentation, most of the marketing teams pretty much rely on the lists (or smart lists) that are built inside the marketing automation platforms.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">As <a href="https://marqeu.com/marketing-analytics/">marketing analytics capabilities are maturing across the organizations</a>, questions are being asked to go beyond just using the marketing engagement and demographics data for segmentations.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Modern marketing teams are leveraging the data across the MarTech platforms to provide a 360-degree view of the customer/prospects and enable contextual segmentation for campaigns. This is where the</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">concept of <strong>&#8220;Multi-Dimensional Contextual Segmentation Engine&#8221;</strong> comes into play where capabilities are built to continuously feed data from the core business operations platforms (including finance, sales and marketing) into one central data warehouse.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Having all the relevant data in one place <strong>enables marketing analysts to cross-hatch the data from different sources across different stages of the buyer’s journey and build contextual segmentations and micro-segmentations</strong> per the needs of the campaigns both for digital and offline campaigns. Leveraging <a href="https://marqeu.com/advanced-analytics/">our marketing analytics services</a>, we provide marketing teams with an intuitive visual interface (built using modern BI tools like Tableau, Looker, PowerBI, DOMO) to build multiple micro-segments on the fly that are tailored to the strategy and call-to-action of their campaigns.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">This ability to go beyond marketing automation platforms to build information rich and contextual segments on the fly was beyond imagination for our customers before we implemented the contextual segmentation engines at their organizations.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We are helping all our customers think beyond the usual demographics data (like role, job level, location, etc.) when it comes to building segments for their campaigns and leveraging historic campaign engagement, pipeline history, web engagement, and most importantly, the intent data that signals buying behavior. There are a lot of hidden insights that are captured by marketing tech, CRM, and sales engagement platforms that could be used in building micro-segments. With the contextual segmentation engine, we have enabled our customers with the <a href="https://marqeu.com/marketing-database-analytics/">capabilities to build these micro-segments on-the-fly</a> and align messaging, offers, and channels accordingly to drive higher engagement for all their programs.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><img loading="lazy" decoding="async" class="aligncenter wp-image-4004" src="https://marqeu.com/wp-content/uploads/2020/10/DatabaseSegmentationEngine-marqeu-1024x599.png" alt="DatabaseSegmentationEngine-marqeu" width="685" height="401" srcset="https://marqeu.com/wp-content/uploads/2020/10/DatabaseSegmentationEngine-marqeu-1024x599.png 1024w, https://marqeu.com/wp-content/uploads/2020/10/DatabaseSegmentationEngine-marqeu-300x176.png 300w, https://marqeu.com/wp-content/uploads/2020/10/DatabaseSegmentationEngine-marqeu-768x450.png 768w, https://marqeu.com/wp-content/uploads/2020/10/DatabaseSegmentationEngine-marqeu-1536x899.png 1536w, https://marqeu.com/wp-content/uploads/2020/10/DatabaseSegmentationEngine-marqeu.png 1886w" sizes="(max-width: 685px) 100vw, 685px" /></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">When it comes to managing the marketing database and getting the most out of them, there are 3 core competencies:</p>
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li>The ability of the marketing organizations to have real-time insights into the health of the database via database health metrics reports and dashboards.</li>
<li>Operational frameworks and procedures to continuously track and optimize the quality integrity of the database, which is constantly changing.</li>
<li>Marketing Analytics capabilities to mine the database for segmentation to enable contextual experiences for all marketing campaigns, which in turn drive higher engagement and accelerate pipeline generation.</li>
</ul>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The <a href="https://marqeu.com/marketing-database-analytics/">real value adds for the database health insights</a> that are powered by the database segmentation engine is to enable micro-segmentation for all marketing campaigns</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">especially for events, virtual events, webinars, and field marketing campaigns. When it comes to segmentation and list building for the campaigns, most of the marketing organizations still rely on explicit data (mainly demographics data). This does not seem to do justice to the massive investments that the organizations make in the marketing tech stacks. This concept of micro-segmentation is fascinating to see it in-action and this case study about webinar registrations paints a beautiful picture of the extraordinary results that can be achieved with this holistic data-driven approach.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">One of our customers (a SaaS start-up) had been seeing good but relatively flat engagement and pipeline influence from their webinars as <a href="https://marqeu.com/services/">demonstrated by the campaign performance reports that we had built</a>. They were planning on further investing in webinars to accelerate pipeline generation and wanted to make sure that they can increase conversions both in terms of engagement and pipeline from their webinars. During our initial discussion and data analysis for webinar campaign data, we realized that there were a lot of insights the webinar segments were missing out on leveraging as they were primarily relying on demographics data for driving webinar registrations. Leveraging our database insights frameworks and contextual segmentation engine, we helped them put together a comprehensive webinar strategy powered by micro-segmentations. <strong>Instead of 1 segment for the webinar, we helped them put together 4 different micro-segments.</strong> One of the micro-segment was of those leads who had been actively engaging with the webinars over a given time. This particular webinar was meant for practitioners (rather than for the decision-makers) so we helped them discover a few insights about the practitioner persona to appeal to the practitioners who were seen as using their products on a day to day basis. We even took this 1 step further and helped them further categorize the practitioner segment into 3 different micro-segments based on the past 90 days of the web behavior and engagement on their platform and their pipeline history with the organization.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">With these insights, their team was able to craft unique contextual messaging for each of the micro-segments <strong>resulting in a 16% improvement in webinar conversions</strong>.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">This case study reinforces the fact that the <a href="https://marqeu.com/marketing-database-analytics/">marketing database is a gold-mine</a> for any marketing organization. Given that the marketing database is the foundation of any marketing and sales playbook, database insights are relevant for all marketing campaigns and sales conversations.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We did not have to go anywhere to get these additional insights for the webinar micro-segments. They were right there in the marketing automation and CRM platforms that our customer was already using. We just had to understand the business questions, leverage the <a href="https://marqeu.com/marketing-analytics/">existing marketing analytics capabilities</a> to mine the data accordingly to surface the insights, and make them easily available for the marketers. We started with the key (and extremely relevant) business questions from the sales and marketing leaders. We then reviewed what we could answer with the capabilities we had put in place based on earlier asks, had follow-up discussions to understand further what was being asked for, how it would be used, and then we went about building the solution with the set of tools we already had in the organization.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Contrary to the prevailing wisdom, we did not jump to get the fanciest MarTech tools and then started figuring out how to use them and if they were of any relevance for what the business needs were. Déjà vu!</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We are always on the lookout for inputs and examples from the marketing community to keep adding value for our customers. We welcome the inputs and feedback from other leaders and practitioners around how you are leveraging the insights rich data across the MarTech platforms? Have you built the capabilities in your organizations to enable marketing teams to build the micro-segmentation on-the-fly for their campaigns?</p>
<p>The post <a href="https://marqeu.com/database-segmentation-engine/">Multi-Dimensional Segmentation Engine &#8211; Beyond the Smart Lists</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/database-segmentation-engine/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Top 2 Marketing Analytics Priorities for B2B Marketing Teams</title>
		<link>https://marqeu.com/top2-marketing-analytics-priorities/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=top2-marketing-analytics-priorities</link>
					<comments>https://marqeu.com/top2-marketing-analytics-priorities/#respond</comments>
		
		<dc:creator><![CDATA[marqeu]]></dc:creator>
		<pubDate>Mon, 03 Aug 2020 06:59:07 +0000</pubDate>
				<category><![CDATA[All Things Marketing Analytics Services and Automation]]></category>
		<category><![CDATA[marketing operations]]></category>
		<category><![CDATA[marketing-analytics]]></category>
		<guid isPermaLink="false">https://marqeu.com/?p=3980</guid>

					<description><![CDATA[<p>As though the ever-increasing expectations of the c-suite from marketing teams to demonstrate the quantifiable impact were not enough and now we are in these unprecedented times, which have further highlighted the need for marketing to be more data-driven and efficient with their investments. Scrutiny around marketing budgets and the asks for returns from the[...]</p>
<p>The post <a href="https://marqeu.com/top2-marketing-analytics-priorities/">Top 2 Marketing Analytics Priorities for B2B Marketing Teams</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">As though the ever-increasing expectations of the c-suite from marketing teams to demonstrate the quantifiable impact were not enough and now we are in <strong>these unprecedented times, which have further highlighted the need for marketing to be more data-driven and efficient with their investments.</strong> Scrutiny around marketing budgets and the asks for returns from the marketing spend (ROI) have only increased in the current times. Across the board, we are seeing these are Top 2 marketing analytics priorities for B2B marketing teams.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">With the onset of this pandemic, all marketing organizations had to adjust their annual plans and more importantly, double down on the <strong>“digital-first”</strong> strategies to account for the cancellation of the<a href="https://marqeu.com/events-marketing/"> in-person events, which have been biggest driver of marketing pipeline and revenue.</a></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The core competency that differentiates the winning organizations is their ability to objectively evaluate the investments that drive the highest engagement leading to pipeline growth. This is where</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">marketing teams are relying more extensively than ever before on marketing analytics to help guide the decision making around investments and execution.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Marketing performance insights and marketing analytics not only empower marketing leaders to have data-driven conversations with the c-suite, inspire/reward their teams based on performance but also optimize the execution of their strategy. Such <a href="https://marqeu.com/growth-marketing/">modern marketers with the growth mindset incorporate analytics</a> rigor as well as revenue mindset for every decision they make. Data-driven CMOs are increasingly relying on marketing analytics teams to lead the charge for demonstrating the quantifiable impact marketing organizations are making.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Latest (July 2020) DemandGen benchmark research around marketing measurement has once again highlighted that marketing analytics continues to be the <strong>top priority for B2B marketing organizations</strong>.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><img loading="lazy" decoding="async" class="aligncenter wp-image-3988" src="https://marqeu.com/wp-content/uploads/2020/08/marketing-analytics-challenges-marqeu-1024x518.png" alt="marketing analytics challenges - marqeu" width="708" height="358" srcset="https://marqeu.com/wp-content/uploads/2020/08/marketing-analytics-challenges-marqeu-1024x518.png 1024w, https://marqeu.com/wp-content/uploads/2020/08/marketing-analytics-challenges-marqeu-300x152.png 300w, https://marqeu.com/wp-content/uploads/2020/08/marketing-analytics-challenges-marqeu-768x388.png 768w, https://marqeu.com/wp-content/uploads/2020/08/marketing-analytics-challenges-marqeu.png 1102w" sizes="(max-width: 708px) 100vw, 708px" /></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The research report has listed the top challenges that are preventing marketing teams from realizing the vision of data-driven marketing and how critical it is to build these competencies. This transformation to digital-first marketing has only accelerated the need for <a href="https://marqeu.com/successful-marketing-analytics/">rigor around marketing analytics</a>. According to this research,</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;"><strong>82%</strong> of respondents believe enhancing the marketing analytics capabilities is a growing priority.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Even though many forward-looking marketing organizations have some kind of marketing analytics capabilities in place but <strong>40% still believe their ability to measure and analyze marketing performance needs improvement</strong>.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">With the experience of working with over 30 B2B marketing organizations for various marketing analytics projects, I have been <a href="https://marqeu.com/advanced-analytics/">working with the marketing teams when it comes to deploying these marketing analytics capabilities</a>. Here is my approach when it comes to handling <strong>2 of the highest priorities as are listed in this report</strong>.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The top priority (for 75% of the marketing teams, and not 100% &#8211; interestingly) is to show the impact on pipeline and revenue.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The importance of demonstrating how marketing is impacting the pipeline has grown manifolds in the recent times. There are numerous <a href="https://marqeu.com/5-metrics-marketinganalytics/">frameworks to track marketing’s impact</a> but the 2 metrics that are my go-to when it comes to demonstrating the impact of marketing on pipeline and revenue are: <strong>Marketing Pipeline Acceleration/Influence and New Pipeline Sourcing.</strong> With these 2 metrics, organizations can quantify marketing-driven engagements across the accounts and relate them to the on pipeline growth. These pipeline correlations of the marketing activities provide valuable insights when it comes to understanding “when” the new opportunities were created in marketing engaged accounts and for the accounts with existing opportunities, how marketing was able to influence deal expansion and accelerate deal closures. These 2 KPIs are very influential when it comes to evaluating the market mix across marketing tactics and channels in different phases of the buying cycle.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The approach to designating an opportunity as marketing sourced vs marketing influenced is purely data-driven.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">It is based on the timelines of the first marketing engagement in comparison with the sales engagements within an account. Given that the volumes of data are enormous now, the <a href="https://marqeu.com/marketing-analytics/">most efficient and automated approach to this analysis</a> is by loading all the relevant data from marketing automation and CRM platforms in a SQL server (Redshift, Snowflake, MySQL, MS-SQL, BigQuery). Once the data is available, the logic described below can be easily implemented with the help of a SQL script and automated.</p>
<ul style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">
<li>Identify all the engaged leads and contacts from each of the accounts with open or closed/won opportunities in a given time frame.</li>
<li>Find all the marketing engagements for each of the accounts through for the leads and contacts on those accounts using lead/contact IDs or/and domains.</li>
<li>Find all the activities (sales calls and outreach emails) for each of the accounts through all the leads and contacts.</li>
<li>Designate and combine all sales and marketing engagements data along with their respective dates and account level information.</li>
<li>Compare each marketing engagement and sales activity with the opportunity created date to find if the engagement happened before (how much before) or after the opportunity creation</li>
<li>Based on this data set, if the marketing engagement happened before the sales engagement, that marketing activity (or combination of the marketing activities via attribution) usually gets the credit for sourcing the opportunity.</li>
</ul>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Once completed, this analysis can be rolled-up to see the overall marketing sourced and pipeline number. This analysis can further be expanded across campaigns and account dimensions to track the performance of different campaigns, channels across different account segments and regions.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">At a general level, <strong>this is the fundamental approach towards quantifying the impact of marketing on pipeline and revenue</strong>. Modern marketing analytics tools make it easy to deploy these frameworks. Depending on the business model, go-to-market strategy, and the marketing mix, I have been working with different organizations to deploy a version of this approach towards calculating the marketing sourced and influenced pipeline.</p>
<blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">58% of the marketing teams consider tracking ROI from all marketing investments as the 2nd most important priority.</p>
</blockquote>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">Marketing sourced and influenced data (as discussed above) enables <a href="https://marqeu.com/marketing-analytics-and-roi/">tracking of Marketing ROI</a> through marketing attribution. For every deal (especially in the enterprise space), countless marketing touches are involved from web engagement (visits, clicks) to email engagement, webinars, e-books, white papers, in-person events, and the list of all the touches goes on and on. While all such touches have a varying degree of influence on the deals, they all come at a cost from the limited marketing budget. It is not fair on part of marketing leaders to allocate their budgets to different tactics without having access to the insights around how these tactics perform. This is where multi-touch campaign attribution comes into play and it is the most valuable of all the KPIs as it powers the marketing investment decision making, which in turn drives the results for the marketing organization. Whether it is the First Touch, Last Touch, Multi-Touch, Equal Weight Multi-Touch, or Weighted approach to marketing attribution, when implemented correctly and validated, the insights provided are of immense value for the marketing organization.<img loading="lazy" decoding="async" class="aligncenter wp-image-3992" src="https://marqeu.com/wp-content/uploads/2020/08/B2B-marketing-attribution-marqeu-1024x382.png" alt="B2B marketing attribution - marqeu" width="724" height="270" srcset="https://marqeu.com/wp-content/uploads/2020/08/B2B-marketing-attribution-marqeu-1024x382.png 1024w, https://marqeu.com/wp-content/uploads/2020/08/B2B-marketing-attribution-marqeu-300x112.png 300w, https://marqeu.com/wp-content/uploads/2020/08/B2B-marketing-attribution-marqeu-768x287.png 768w, https://marqeu.com/wp-content/uploads/2020/08/B2B-marketing-attribution-marqeu.png 1058w" sizes="(max-width: 724px) 100vw, 724px" /></p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">To get to Marketing ROI, tracking marketing spend data is critical. Spreadsheets are the go-to tools for most of the marketing organizations when it comes to tracking and managing the program spend. It is cumbersome to track the spend on these numerous spreadsheets and more importantly relate them to the actual campaign data in CRM (usually Salesforce.com &#8211; SFDC) where all the pipeline data lives. Since all marketing and sales data is connected via campaigns (especially when it comes to tracking ROI), it makes sense to have the ability to track marketing spend at the campaign level within SFDC. To make this happen, I built a simple MRM (Marketing Resource Management) app within the campaign object in SFDC. It allows for the tracking of marketing spend over time for each of the campaigns and once rolled-up (at each campaign level), it shows the total marketing spend, itemized by date of spend at once place as shown here. Combining the attributed pipeline data with the marketing spend data is what brings Marketing ROI data to life. Here also, this data can be combined with other campaigns and accounts data to help the marketing teams understand what campaigns and tactics are bringing in higher ROI across different account regions and segments.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">The set of these KPIs provides strategic insights to the marketing leaders and CMOs so that they can confidently demonstrate the impact that their organizations are making and help foster a strong working relationship for marketing within the c-suite, especially with the CFOs.</p>
<p style="font-size: 17px; letter-spacing: 0.3px; line-height: 1.7; text-align: justify;">We are always on the lookout for inputs and examples from the marketing community to keep adding value for our customers. We welcome the inputs from other leaders and practitioners around what challenges they face when it comes to deploying marketing analytics capabilities? How are they defining the metrics for tracking marketing’s impact on pipeline and revenue?</p>
<p>The post <a href="https://marqeu.com/top2-marketing-analytics-priorities/">Top 2 Marketing Analytics Priorities for B2B Marketing Teams</a> appeared first on <a href="https://marqeu.com">marqeu</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://marqeu.com/top2-marketing-analytics-priorities/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
