VBA Code:
Sub TurnTablesIntoRanges()
Dim wks As Worksheet, objList As ListObject
For Each wks In ActiveWorkbook.Worksheets
For Each objList In wks.ListObjects
objList.Unlist
Next objList
Next wks
End Sub
Hello,
A novice here... I have few tables in each workbook in a multiply sheets excel file.
Can you help me to change this VBA above to be able to only convert tables that are in rows let's say: 20-100 and leave other tables in each workbook intact?
Thanks in advice for your ideas.
Best regards,
Wojtek