This topic is locked

How to Total values of the same table

7/16/2008 6:04:07 AM
ASPRunnerPro General questions
V
vimalneo author

In my Table i have 4 fileds Mark1,Mark2,Mark3,Total
In add/edit page i want to total Mark1+Mark2+Mark3 and display the result in Total Field
Pls Help

J
Jane 7/17/2008

Hi,
use Before record added/updated events on the Events tab for this purpose.

Here is a sample code:

dict("Total") = dict("Mark1")+dict("Mark2")+dict("Mark3")