Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

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 Accepted Solution

Avatar

Correct answer by
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

View solution in original post

4 Replies

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

Correct answer by
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

Level 10

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