user2541400
user2541400

Reputation: 41

Tracking a new data in Google Analytics Ecommerce

I use Google analytics tracking code to track my orders as in

<pre>

    <script type="text/javascript" lang="javascript">
    {literal}
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', '-------']);
    _gaq.push(['_trackPageview']);
</pre>

I want to pass additional variable (Service information) to analytics and view it under Ecommerce > Overview > As list under Top Revenue Sources. I tried to edit the script by defining custom variable, but this appears in the Audience > Custom > Custom Variables section

Let me know how to add the new details under ecommerce overview.

Thanks! Farhath

Upvotes: 0

Views: 71

Answers (1)

Eike Pierstorff
Eike Pierstorff

Reputation: 32780

You can't (not programmatically in any case). You'd have to store your value as a custom variable and then create a custom report that includes the value, or set the custom variable as secondary dimension in a standard report and create a shortcut.

Upvotes: 0

Related Questions