Google Ads Budget Tracker
Exports campaign spend for this month and last 7 days into Google Sheets so budget pacing is visible at a glance.
Script code
Use this when you want a lightweight spend tracker without third-party tools. It writes campaign-level costs to two tabs.
Preview is public. Unlock full code with name and email.
/**
* ==========================================================
* Google Ads Budget Tracker
* ==========================================================
* Description: Exports Google Ads campaign spend into two
* Google Sheets tabs:
* - This Month Data
* - Last 7 Days Data
*
* Copyright (c) 2026 TwoSquares. All Rights Reserved.
* Developed by Kiril Ivanov
*/
function main() {
var SPREADSHEET_URL = "YOUR_SHEET_HERE";
var THIS_MONTH_SHEET = "This Month Data";
var LAST_7_DAYS_SHEET = "Last 7 Days Data";
// ... preview shortened
}За този script
Google Ads Budget Tracker is built for PPC teams that need quick, reliable pacing visibility without adding another dashboard tool. It pulls campaign-level spend and pushes it directly into a Google Sheet so anyone in the team can review budget usage in seconds.
The script writes two separate views: month-to-date data and last-7-days data. This gives you both strategic and tactical context, making it easier to spot overspend, identify underdelivery, and make daily pacing decisions before performance drifts.
Because it runs natively in Google Ads Scripts and exports in a simple tabular format, it is easy to schedule, audit, and adapt. You can extend it later with alerts, filters, or campaign grouping logic based on your account structure.
Implementation notes
- Create a Google Sheet with tabs named exactly: This Month Data and Last 7 Days Data.
- Replace YOUR_SHEET_HERE with the full Google Sheet URL.
- Paste the script into Google Ads Scripts and authorize access.
- Run once manually to confirm permissions and output formatting.
- Schedule it daily so your team has a fresh pacing snapshot every morning.
Още scripts в библиотеката
Campaign Underspending Alert
Flags campaigns and shared budgets that are underspending against expected budget pace, with support for yesterday or intraday checks.
Account Anomaly Detector
Compares today’s account performance against the same weekday across previous weeks and alerts when impressions, clicks, conversions, or cost move outside expected bounds.
Campaign Name Export
Exports all campaigns with status and channel type into a Google Sheet for quick account documentation and review.
MCC Negative Keyword Conflict Checker
Runs across manager-account children, compares enabled keywords to campaign and ad group negatives, and exports likely conflicts into Google Sheets.
Google Ads Budget Tracker FAQs
Чести setup, usage и troubleshooting въпроси за този script.