简体   繁体   中英

Cost per acquisition in GA Event from Adwords campaigns?

I've created an Event on Google Analytics to count all new sign-ups on my website, then I've created a goal on Google Analytics that gets results from that Event so I can send this goal to my Google Adwords account to trace conversion rate from my campaigns.

The problem that I have is manually calculating the cost of acquisition as in Google Analytics Goal value showing 0 where I set Goal Value as Event Value

On Adwords, I've set Value to be managed by Google Analytics.

How does one set the Event value to reflect my Adwords campaign (as each click has it's own CPC value)?

You are confusing a couple of different concepts.

CPC = Cost/Clicks and is this is recalculated with each click on your ads and changes mostly due to competitions. Value = Constant monetary value, say, 50 USD which you need to assign based on business logic for your site. Eg the average customer's lifetime value less the average cost of acquisition.

Note: if you are getting 0 value for the events you have an issue with how you have coded your event. You should post the code snippet you are using.

anyhow the analytics code you need to use is:

ga('send', 'event', [eventCategory], [eventAction], [eventLabel], [eventValue]);

or more specifically something like:

 var regVal=myCPCcalculator(); ga('send', 'event', 'macro_conversions', 'click', 'registration', regVal]); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM