I need to know the position of a cell in the table in order to validate it against its neighbors (rising and falling values across row). When just editing a cell I can use the beforeValidate function to get the row number and column name.
When you paste, the beforeValidate function is called once for every cell and then the validation function is run multiple times. The problem is then that the row and column will always be the same for every validation.
Shouldnt the before validation be run in between each call to the validation function?