Hi,
i want to update the grid cell value based on two cell values by multiplying it. when i debug, in modified method i am getting expected value in "num" variable but but it is not reflecting on forms grid.
here's the code
public void modified() { real num; num = WriteOffTrans1_Weight.realValue() * WriteOffTrans1_PPPounds.realValue(); WriteOffTrans1_WriteOffAmount.realValue(num); super(); }