I have this query in AWQL and I get the response in CSV format using the ReportUtils::DownloadReportWithAwql
select Date, Clicks, Cost from ACCOUNT_PERFORMANCE_REPORT during LAST_30_DAYS
I need to convert the Cost data in the CSV from micros to the currency in the account (Cost / 1000000).
Also I need to be able to convert any the Cost data in the response using any AWQL query, for example the solution has to work for this query also:
SELECT CampaignName, KeywordText, Cost, CostPerConversion, QualityScore FROM KEYWORDS_PERFORMANCE_REPORT DURING LAST_7_DAYS
As of v201406, the returnMoneyInMicros header is no longer valid and values are always returned as micros. https://developers.google.com/adwords/api/docs/guides/reporting-concepts#money
This is my first question in stackoverflow.