<< I have a quote form that I have added one column to. This form is based on temporary tables. I was able to add the columns with no problem. I have an EEP that runs on exit from the Quantity field. Prior to adding the new column, it worked in the same row immediately on exiting the field. Now I have to go to the next row and key through the quantity field before it triggers. I have shown the EEP from before and after adding the new column. >>
At a guess, here's what happened: Previously, your field with the EEP was the last located field for that row. The new field you added is located after the field with the EEP. Now, when the EEP executes, the current row has not yet been written to the actual database, so that the SELECT statement is not satisified. You can address this issue by adding SAVEROW to the beginning of your EEP. -- Larry

