简体   繁体   English

Adwords广告系列在GA Event中的每次获得费用?

[英]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. 我已经在Google Analytics(分析)上创建了一个活动,以统计我网站上所有新注册的用户,然后在Google Analytics(分析)上创建了一个目标,该目标从该活动中获取了结果,因此我可以将该目标发送到我的Google Adwords帐户以跟踪转化我的广告系列中的评分。

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 我遇到的问题是手动计算获取成本,如Google Analytics(分析)中的目标值(其中将目标值设置为事件值)显示为0

On Adwords, I've set Value to be managed by Google Analytics. 在Adwords上,我将Value设置为由Google Analytics(分析)管理。

How does one set the Event value to reflect my Adwords campaign (as each click has it's own CPC value)? 如何设置“事件”值以反映我的AdWords广告系列(因为每次点击都具有自己的CPC值)?

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. 价值=固定的货币价值,例如50美元,您需要根据您网站的业务逻辑进行分配。 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. 注意:如果您为事件获取0值,则说明事件编码方式存在问题。 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]); ga('send','event',[eventCategory],[eventAction],[eventLabel],[eventValue]);

or more specifically something like: 或更具体而言,例如:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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