コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Revenue with no decimal places

Avatar

Level 3

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.

1 受け入れられたソリューション

Avatar

正解者
Community Advisor

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

元の投稿で解決策を見る

4 返信

Avatar

Community Advisor

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.

Avatar

正解者
Community Advisor

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

Avatar

Employee

You may need to create calculated metric from Revenue metrics and set the decimal point . Standard Revenue metrics can not be changed.

Avatar

Employee

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