- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2016 01:43 AM
What I have got from Project is
Planned ROI% :The result is calculated based on values in the Planned return and Estimated cost fields. (Planned return/Estimated cost x 100) but does not seems to be correct for Demand
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2016 04:02 PM
Hi Anurag,
thank you for your reply.
Apparently the value we have is not showing as calculated value. However, I have managed to find a business rule on this calculation. Thank you for your advise once again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2016 02:33 AM
Hi Serene,
This is a calculated field, if you right click on the field and go to the dictionary you can see the calculation.
Here is the calculation i have in my personal instance(Fuji)
var financial = current.financial_return || 0;
var total_costs = current.total_costs || 0;
var ret = null;
if (total_costs > 0)
ret = Math.round((parseFloat(current.financial_return)/parseFloat(current.total_costs)) * 100);
ret;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2016 04:02 PM