This topic is locked

how to multiply cells and value in another cell

5/3/2009 9:21:54 PM
PHPRunner General questions
N
needbin author

calculation
What i am trying to do is multiply cell warrtp_price * warrtp_sqft and put the total in warrtp_total.
thank you for your help

J
Jane 5/4/2009

Hi,
use Before record added/Before record updatedevents on the Eventstab for this purpose.

Here is a sample:

$values["warrtp_total"] = $values["warrtp_price"] * $values["warrtp_sqft"];