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.
Solved! Go to Solution.
Views
Replies
Total Likes
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
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
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
Views
Replies
Total Likes
You may need to create calculated metric from Revenue metrics and set the decimal point . Standard Revenue metrics can not be changed.
Views
Replies
Total Likes
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
Views
Replies
Total Likes
Views
Likes
Replies