You need to sign in to do that
Don't have an account?
how two sum two custom fields and Display the values in another column.
i will give Amount and Discount Values,But i want Two values Calculated display the netprice in UI page.plese tel me.
You need to sign in to do that
Don't have an account?
You need to create apex controller, for summarize this fields.
For example vf page and apex controller
The below code can be used as per ur requirement. But in the following code i am using an controller for this and not using any fields. If you want to use any custom fields on any object than you can query the field value in place of <apex:inputtext> and modify the code as per your requirment.
<----------Controller-----------> <---------Page----------> Thanks.