Is it possible to bulk edit the campaign name changes in AdWords Editor? Any work around for this?

1,721 views
Skip to first unread message

Pavan Kumar

unread,
Jan 16, 2014, 3:03:23 AM1/16/14
to adwords...@googlegroups.com
Is it possible to bulk edit the campaign name changes in AdWords Editor? Any work around for this?

Any Scripts available to do this?

Anash Oommen

unread,
Jan 21, 2014, 3:49:28 PM1/21/14
to adwords...@googlegroups.com
Hi Pavan,

You could write a script to bulk edit campaign names easily. For example, you could rename all campaigns with a given label as follows:

var label = AdWordsApp.labels().withCondition("LabelName='foo'").get().next();
var campaignIterator = label.campaigns().get();

while (campaignIterator.hasNext()) {
 
var campaign = campiagnIterator.next();
  campaign
.setName(campaign.getName() + " - renamed");
}

Cheers,
Anash P. Oommen
AdWords Scripts Team

Sean Xie

unread,
Jan 10, 2018, 3:57:11 PM1/10/18
to AdWords Scripts Forum
This is now can be done easily by using AdWords Interface Bulk download/upload feature (using Campaign/AdGroup ID to match the names). This doesn't seem to be available in Editor, as Campaign/AdGroup IDs are not available column in the Multiple Changes section.

Nadeem Malik

unread,
Feb 14, 2024, 5:24:23 AM2/14/24
to Google Ads Scripts Forum
Re: Is it possible to bulk edit the campaign name changes through ads script for individual account not mcc ?

Google Ads Scripts Forum Advisor

unread,
Feb 14, 2024, 9:37:55 AM2/14/24
to adwords...@googlegroups.com

Hi,

Thank you for reaching out to the Google Ads Scripts team. 

Yes, you can bulk edit campaign names easily. For example, you could rename all campaigns with a given condition as follows:

var campaignSelector = AdsApp.campaigns()
    .withCondition("Update your condition to get the campaigns")
   
var campaignIterator = campaignSelector.get();
while (campaignIterator.hasNext()) {
  var campaign = campaignIterator.next();
  campaign.setName("Set the Updated Name");
}

This message is in relation to case "ref:!00D1U01174p.!5004Q02rz6H1:ref"

Thanks,
 
Google Logo Google Ads Scripts Team


Reply all
Reply to author
Forward
0 new messages