Here’s a something you need to know: In GA4 BigQuery exports, event_timestamp is in microseconds, but many tools expect milliseconds. Always divide by 1000 or use TIMESTAMP_MICROS(event_timestamp) to avoid time discrepancies in your analysis.

Comments