excel vba - DELETE from ListObject table rows meeting condition using VBA -


is possible in vba delete rows meeting condition excel listobject table? looking similar sql statement:

delete mylistobjecttable mycolumn='some condition'

try this:

.- break connection,

.- sort listobject per condition (optional have results of condition in 1 range.area deletion),

.- autofilter listobject per condition,

.- delete visible rows of listobject.databodyrange

.- clear autofilter


Comments

Popular posts from this blog

python - RuntimeError: can't re-enter readline -

python - PyInstaller UAC not working in onefile mode -

ios - Pass NSDictionary from Javascript to Objective-c in JavascriptCore -