Hi Chaitanya, Thanks for the clarification.
For reports, you can either download the report data in a file or get the report data as String. So in regards to your concern in applying your code logic (transform fields with micro values into its UI equivalent value) before saving it to a file, then it is possible. You can follow the steps below on how to do this: - Get the report data as String and apply the code logic into that object. You can transform that String object into array for better manipulation (this depends on what is easier for you). To download the report data as String, you need to use the DownloadReportAsString() or DownloadReportAsStringWithAwql() methods in Python. You can check this example <https://developers.google.com/adwords/api/docs/samples/python/reporting#download-criteria-performance-report-as-a-string> on how to do this. - You can then apply your code logic (divide the values of your fields with Money type by 1000000) to your String or Array object. After that, you can now save the String/array object in a file. However, you need to implement your own code logic that creates/downloads a file from a String/array object. You can search other Python forums on how to do this. Let me know if you have further clarifications. Thanks, Vincent AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. 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/19f4c334-8104-4e46-bf9b-f74dcbf5e4c9%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
