Re: C# AdWords Reporting API returning wrong data

2018-04-12 Thread 'Milind Sankeshware (AdWords API Team)' via AdWords API Forum
Hi Jonathan, Could you please share the client customer id for which you ran the report? Also please share the error which you are facing. You could use *Reply privately to author* option when responding. Thanks, Milind, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: C# AdWords Reporting API returning wrong data

2018-04-12 Thread Jonathan Mallia
Hello Chris, Do you mind posting the code where you defined the data table? I am having trouble inserting data in the data table particularly in this step: row[reader.Name] = reader.Value; Would be great if you can help me. Thanks. On Tuesday, April 26, 2016 at 6:48:21 PM UTC+2, Chris Oh wrote

Re: C# AdWords Reporting API returning wrong data

2016-04-26 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Chris, You are right. The Cost, CPC, CPM and other currency related fields are of the type Money , which

Re: C# AdWords Reporting API returning wrong data

2016-04-26 Thread Chris Oh
So I found out that the Cost, CPC, and CPM are for some reason just being multiplied by a million for some reason... As a temp solution, I just decided to simply convert the fields into decimal (they were originally strings) and and divide them by 1 million, and the numbers seem to check out no

C# AdWords Reporting API returning wrong data

2016-04-26 Thread Chris Oh
Hello, I am trying to pull in report data with the C# AdWords API in order to process it for internal use. I am using AWQL to achieve this purpose. For some reason, the cost data I am getting back from the API is incorrect, which I think is messing up other fields I need such as CPC and CPM. Fo