Hi tvrman,
try to solve your problem using a timer!
Introduce a timer and set it enabled = false. Enable the timer with the last statement in your event sub. Now code your additional statements within the timer sub. And don't forget to reset it within the timer sub ...
Code:
Sub Table1_SelectionChanged(column, row)
...
' do something
...
Timer1.enabled = true
End Sub
Sub Timer1_Tick
Timer1.Enabled = false
...
' do something outside the event...
...
End Sub
specci48