In my simplified example I have a continuous form with 2 columns:
curFine and curFinePenalty
By default curFinePenalty = curFine *.26 and I am able to change the value by doing this in the before update event for curFine:
But the user is able to override the default value and put in something else.
After executing the above line, the display for the curFinePenalty doesn't update. If I add a me.recalc call in the afterupdate event for curFine, it updates every single row in the display, which can be 100's of rows. Is there a way to just update the display for the curFinePenalty on the current row?
curFine and curFinePenalty
By default curFinePenalty = curFine *.26 and I am able to change the value by doing this in the before update event for curFine:
Code:
me.curFinePenalty = me.curFine * .26
But the user is able to override the default value and put in something else.
After executing the above line, the display for the curFinePenalty doesn't update. If I add a me.recalc call in the afterupdate event for curFine, it updates every single row in the display, which can be 100's of rows. Is there a way to just update the display for the curFinePenalty on the current row?