Reputation: 11
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)?
Upvotes: 0
Views: 370
Reputation: 1274
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. E.g. 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]);
Upvotes: 1