0
votes

I've used this line to include campaign names that contains "Test" like this:

'WHERE CampaignName CONTAINS "Test" '

How can I exclude the campaign name? I've tried NOT CONTAINS and it doesn't work.

1

1 Answers

1
votes

If you want to select all the campaigns that not contains "Test" you can use this:

WHERE CampaignName DOES_NOT_CONTAIN_IGNORE_CASE 'Test'

See the column Operators on https://developers.google.com/adwords/api/docs/guides/awql?hl=en