Ed: The reason your eep doesn't work is the first row -- your "set var"
line gets the value of the first row in RentRoll, not the row you are on.
If you set up a form variable
vRowID = RowIDthen that's all you need for your "update" command to work properly. If you do that then you don't have to mess about with componentIDs. Karen > Here's the custom eep code > > set var vrowid = rowid in rentroll > update rentroll set bankdate = .bankp where rowid = .vrowid > recalc var > return >

