Hi everyone,

I'm testing how to select some metrics from CAMPAIGN_PERFORMANCE_REPORT 
filtering by Label. But I'm going crazy with that:

select
Labels, LabelIds
from CAMPAIGN_PERFORMANCE_REPORT
where Labels CONTAINS "Name of Label"
during LAST_7_DAYS

I've tried the where clause with all of these variants:

where Labels CONTAINS "Name of Label"
where Labels CONTAINS ["Name of Label"]
where Labels CONTAINS 'Name of Label'
where Labels CONTAINS '"Name of Label"'
where Labels CONTAINS '["Name of Label"]'

The same with = and CONTAINS_IGNORE_CASE operators

Furthermore, I've tried in this other way:


where "Name of Label" IN Labels
where ["Name of Label"] IN Labels
where 'Name of Label' IN Labels
where '"Name of Label"' IN Labels
where '["Name of Label"]' IN Labels

But none of these options worked.

On the other hand, I have coded a MCC script where filtered MCC accounts by 
Label Name in this way: 


var mccLabelText = "Name of Label";
var accountIterator = MccApp.accounts().withCondition("LabelNames CONTAINS 
'" + mccLabelText +"'").orderBy('Name').get();

and it worked! 


Any ideas?


Thousands of Thanks!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b809bd65-35ca-4fb3-b682-98496da375f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to