この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Hello there, guys,
I have recently deployed one solution to adobe analytics for a client and on workspace the revenue is comming as integers and not as decimals. As if the values are beeing applied with Math.root and being round. Is there some configuration that I should do to get the numbers in decimal?
Please let me know if you faced that problem or have an solution to that.
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
You need to make sure when you parse revenue value as integer parseInt(), also use JavaScript toFixed() Method else it will only return integer values. This should solve your issue.
e.g.
revenueValue = 10.5266;
var revenueVariable = parseInt(revenueValue).toFixed(2);
s.products="Mens;Shoes;1;revenueVariable",
Thanks!
Asheesh
表示
返信
いいね!の合計
I don't think you can change the default metric... you can create a custom "calculated metric" which contains just the revenue event, and change to currency event & set the decimals as needed.
you might want to hide the original metric from the usage, best done in VRS by component curation.
表示
返信
いいね!の合計
You need to make sure when you parse revenue value as integer parseInt(), also use JavaScript toFixed() Method else it will only return integer values. This should solve your issue.
e.g.
revenueValue = 10.5266;
var revenueVariable = parseInt(revenueValue).toFixed(2);
s.products="Mens;Shoes;1;revenueVariable",
Thanks!
Asheesh
表示
返信
いいね!の合計
You may need to create calculated metric from Revenue metrics and set the decimal point . Standard Revenue metrics can not be changed.
表示
返信
いいね!の合計
If one of the replies above answers your question, please be sure to click the "Correct Answer" button on that reply. This will ensure others can quickly find the correct answer.
Thanks,
Jantzen
表示
返信
いいね!の合計