Critical to understanding how your site is performing and determine which sources of traffic are profitable.
Ecommerce
Accuracy
How accurate is your recent data?
Behavior
Can you tell what visitors are doing?
A GA4 audit is essential for uncovering missing insights—key data points that organizations don't yet know and can act upon. A well-done audit evaluates both behavioral tracking and traffic attribution, ensuring each is accurate and useful. It also assesses whether the data collected truly supports business decisions and reporting.
This test checks whether any purchase events or transactions in Google Analytics are recorded without a revenue value (i.e., total value = 0). This is typically a sign of:
The result is serious underreporting in Google Analytics:
Our free instant audit tool checks for 90 issues in 90 seconds.
Then gives you a prioritized list of items to tackle.
No cost, no sales call... just free goodness.
SELECT
ep.value.string_value AS transaction_id,
MAX(CAST((SELECT value.double_value FROM UNNEST(event_params) WHERE key = 'value') AS FLOAT64)) AS revenue,
COUNT(*) AS purchase_events
FROM `your_dataset.events_*`, UNNEST(event_params) AS ep
WHERE event_name = 'purchase' AND ep.key = 'transaction_id'
GROUP BY transaction_id
HAVING revenue = 0 OR revenue IS NULL
ORDER BY purchase_events DESC;
Want to identify and fix this immediately? Run our Instant Audit
Or hire a pro to restore trust in your ecommerce data.
gtag('event', 'purchase', {
transaction_id: 'T12345',
currency: 'USD',
value: 129.99,
tax: 10,
shipping: 5,
items: [...]
});
Every Google Analytics audit should result in a plan for more insights.
An insight is:
Identify and remove insight blockers. Don't get tempted to track things you can't act on!