I have a table like this:
Field1 Field2
Alfa 1
Beta 2
(Blank) (Blank)
Delta 4
. .
. .
etc.
I need a Visual Basic way to convert the table like:
Field1 Field2
Alfa 1
Beta 2
Delta 4
. .
. .
etc.
In other words, using VB, I need to delete the blank rows. Thanks