Excel – Convert to Range VBA code

microsoft-excel-2007vba

Does anyone know how to "Convert to Range" in VBA code… I need to convert the "dam" table before applying a subtotal …hhmmmm

Best Answer

This should do the same as the Convert to Range function

ActiveSheet.ListObjects("TableName").Unlist
Related Question