Micro-Conversion vs Macro-Conversion
A macro-conversion is the primary goal of a website (a purchase, a sign-up). A micro-conversion is a smaller, intermediate action that indicates user engagement and progress toward the macro-conversion (email click, video watch, add to cart, page scroll). Both matter. You cannot optimize macro-conversions without understanding micro-conversions.
§ 1 Definition
Macro-conversions are the primary, business-critical actions users take on a website: completed purchases, paid subscriptions, form submissions that generate qualified leads. Micro-conversions are the smaller actions that indicate interest, intent, and progression through the funnel: newsletter sign-ups, PDF downloads, video plays, add-to-cart clicks, scroll depth milestones, and return visits. Micro-conversions are leading indicators. Macro-conversions are lagging indicators. If you are only tracking macro-conversions, you are flying blind.
§ 2 Why Micro-Conversions Matter
Micro-conversions tell you what is working before the final conversion happens. They reveal where users are engaged and where they drop off. A high add-to-cart rate with a low purchase rate indicates a checkout problem. A high page view rate with a low email sign-up rate indicates a weak lead magnet. Micro-conversions are the diagnostic data you need to optimize the funnel. Without them, you only see the symptom, not the cause.
§ 3 The Hierarchy of Micro-Conversions
Not all micro-conversions are equal. Some are strongly predictive of macro-conversions. Others are vanity metrics. The hierarchy from strongest to weakest signal: (1) Actions that require financial commitment (add to cart, upgrade click). (2) Actions that require personal information (form start, email sign-up). (3) Actions that require time investment (video completion, long scroll). (4) Actions that require minimal effort (page view, social share, link click). Focus on the top tiers.
§ 4 The Macro-Conversion Trap
Many teams optimize exclusively for macro-conversions. This is a mistake. Macro-conversions are rare events (2-5% of visitors). They are statistically noisy. Micro-conversions happen 10-50x more frequently, giving you faster data for A/B tests. Optimizing micro-conversions is the fastest path to improving macro-conversions. You cannot fix the end of the funnel without understanding the middle.
§ 5 Note
§ 6 In code
<!-- Tracking micro-conversions with data attributes -->
<button data-macro="purchase" data-micro="add-to-cart">
Add to Cart
</button>
<button data-micro="video-play" data-video-id="demo-video">
Play Demo
</button>
<script>
// Universal micro-conversion tracker
document.querySelectorAll('[data-micro]').forEach(el => {
el.addEventListener('click', function() {
gtag('event', 'micro_conversion', {
'event_category': 'engagement',
'event_label': this.dataset.micro
});
// Also fire macro if present
if (this.dataset.macro) {
gtag('event', 'macro_conversion', {
'event_category': 'conversion',
'event_label': this.dataset.macro
});
}
});
});
</script>§ 7 Common questions
- Q. How many micro-conversions should I track?
- A. Track 5-10 micro-conversions that map to distinct stages of your funnel. Too few and you miss diagnostic data. Too many and you drown in noise.
- Q. Can a micro-conversion become a macro-conversion?
- A. Yes. As your business evolves, goals change. A micro-conversion that becomes a primary business objective should be promoted to macro-conversion status.
- Q. How do I know which micro-conversions predict macro-conversions?
- A. Run correlation analysis. A micro-conversion that correlates highly with eventual macro-conversions is a strong leading indicator. Use analytics tools or your data team to calculate the correlation coefficients.
- Macro-conversions are primary goals. Micro-conversions are intermediate engagement signals
- Micro-conversions are leading indicators. Macro-conversions are lagging indicators
- Micro-conversions happen more frequently, enabling faster A/B testing
- Optimize micro-conversions to improve macro-conversions
Atomic Glue sets up micro-conversion tracking across your funnel. We use micro-conversion data to diagnose macro-conversion problems and accelerate testing. Analytics & Tracking
Get in touchA macro-conversion is the primary goal of a website (a purchase, a sign-up). A micro-conversion is a smaller, intermediate action that indicates user engagement and progress toward the macro-conversion (email click, video watch, add to cart, page scroll). Both matter. You cannot optimize macro-conversions without understanding micro-conversions.
Category: Cro (also: Analytics, Marketing)
Author: Atomic Glue Research Team
## Definition
Macro-conversions are the primary, business-critical actions users take on a website: completed purchases, paid subscriptions, form submissions that generate qualified leads. Micro-conversions are the smaller actions that indicate interest, intent, and progression through the funnel: newsletter sign-ups, PDF downloads, video plays, add-to-cart clicks, scroll depth milestones, and return visits. Micro-conversions are leading indicators. Macro-conversions are lagging indicators. If you are only tracking macro-conversions, you are flying blind.
## Why Micro-Conversions Matter
Micro-conversions tell you what is working before the final conversion happens. They reveal where users are engaged and where they drop off. A high add-to-cart rate with a low purchase rate indicates a checkout problem. A high page view rate with a low email sign-up rate indicates a weak lead magnet. Micro-conversions are the diagnostic data you need to optimize the funnel. Without them, you only see the symptom, not the cause.
## The Hierarchy of Micro-Conversions
Not all micro-conversions are equal. Some are strongly predictive of macro-conversions. Others are vanity metrics. The hierarchy from strongest to weakest signal: (1) Actions that require financial commitment (add to cart, upgrade click). (2) Actions that require personal information (form start, email sign-up). (3) Actions that require time investment (video completion, long scroll). (4) Actions that require minimal effort (page view, social share, link click). Focus on the top tiers.
## The Macro-Conversion Trap
Many teams optimize exclusively for macro-conversions. This is a mistake. Macro-conversions are rare events (2-5% of visitors). They are statistically noisy. Micro-conversions happen 10-50x more frequently, giving you faster data for A/B tests. Optimizing micro-conversions is the fastest path to improving macro-conversions. You cannot fix the end of the funnel without understanding the middle.
## Note
The line between micro and macro depends on your business model. For a SaaS company, a free trial sign-up is a macro-conversion. For an ecommerce site, a free trial sign-up is a micro-conversion. Define your terms before you start tracking.
## In code
<!-- Tracking micro-conversions with data attributes -->
<button data-macro="purchase" data-micro="add-to-cart">
Add to Cart
</button>
<button data-micro="video-play" data-video-id="demo-video">
Play Demo
</button>
<script>
// Universal micro-conversion tracker
document.querySelectorAll('[data-micro]').forEach(el => {
el.addEventListener('click', function() {
gtag('event', 'micro_conversion', {
'event_category': 'engagement',
'event_label': this.dataset.micro
});
// Also fire macro if present
if (this.dataset.macro) {
gtag('event', 'macro_conversion', {
'event_category': 'conversion',
'event_label': this.dataset.macro
});
}
});
});
</script>## Common questions
Q: How many micro-conversions should I track?
A: Track 5-10 micro-conversions that map to distinct stages of your funnel. Too few and you miss diagnostic data. Too many and you drown in noise.
Q: Can a micro-conversion become a macro-conversion?
A: Yes. As your business evolves, goals change. A micro-conversion that becomes a primary business objective should be promoted to macro-conversion status.
Q: How do I know which micro-conversions predict macro-conversions?
A: Run correlation analysis. A micro-conversion that correlates highly with eventual macro-conversions is a strong leading indicator. Use analytics tools or your data team to calculate the correlation coefficients.
## Key takeaways
- Macro-conversions are primary goals. Micro-conversions are intermediate engagement signals
- Micro-conversions are leading indicators. Macro-conversions are lagging indicators
- Micro-conversions happen more frequently, enabling faster A/B testing
- Optimize micro-conversions to improve macro-conversions
## Related entries
- [Conversion Rate Optimization](atomicglue.co/glossary/cro)
- [Conversion Funnel (ToFu/MoFu/BoFu)](atomicglue.co/glossary/conversion-funnel)
- [Click-Through Rate (CTR)](atomicglue.co/glossary/click-through-rate-ctr)
- [Scroll Depth](atomicglue.co/glossary/scroll-depth)
Last updated July 2026. Permalink: atomicglue.co/glossary/micro-conversion-vs-macro-conversion