Hi,
Is it possible to recover the total impressions of all keywords and also the total number of all QualityScore from all campaign inside an account.
I can already do it with a "For Each" by creating a loop through the results but I was wondering if it was possible to return the result via the reports directly.
Here is my current formula:
$dateRange = "LAST_14_DAYS";
$reportQuery = '
SELECT QualityScore, Impressions
FROM CRITERIA_PERFORMANCE_REPORT
Status WHERE IN [ENABLED, PAUSED]
AND Impressions> 1
Pendant '. $dateRange;
Thank you, your help is appreciated.