I set one range to another:
'Save row info
Set rRow = loSrc.ListRows(lListRowIndex).Range
When I delete the source, rRow is cleared.
'Delete row from table
loSrc.ListRows(lListRowIndex).Delete
Why does this happen? This wouldn't happen if I wrote:
iNumber = iSource + 1
iSource is nothing
And even more importantly, how can I stop this from happening, so that I can use rRow even after loSrc.ListRows(lListRowIndex).Delete has executed.