VBA Convert to Range

Pinaceous

Well-known Member
Joined
Jun 11, 2014
Messages
1,113
Office Version
  1. 365
Platform
  1. Windows
Hi All,

Is there a way through VBA that I can change one of my tables by macro to 'Convert to Range'?

Thanks,

Pin
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Is there a way through VBA that I can change one of my tables by macro to 'Convert to Range'?
There does not seem to be a direct way. In order to look for an indirect way, we need to know what is in your table. Are there any formulas in the table? If so, are any of them array-entered formulas? Do you have any other cells anywhere in the workbook that references the table or its cells?
 
Upvote 0
Perhaps:

Code:
With Worksheets("Sheet1").ListObjects("Table1")
    .TableStyle = ""   'optional
    .Unlist
End With
 
Upvote 0
Here may be a partial way to what you want, assuming that you want something returned like: Range("B3:AN20"). ....

This code begins in B3 and looks for the last row and column. It is returning those values in A1 and A2.
Code:
Sub MyRange()

    ' Get last column from left that is not blank
    Dim LastCol As Integer
    LastCol = Sheet1.Range("B3").End(xlToRight).Column

    Range("A1").Value = LastCol
    ' Write text to first blank cell in Row 1
    
    Dim LastRow As Integer
    LastRow = Sheet1.Range("B3").End(xlDown).Row
    Range("A2").Value = LastRow

End Sub
The formula is created in Excel and would have to be rewritten in VBA syntax.

=CONCATENATE(IF(A1>26,CHAR(65+(A1-1)-MOD(A1-1,26)-26),""),CHAR(65+MOD(A1-1,26)))

It's not perfect, but it may be a start.
 
Upvote 0
Hello Rick!

I actually googled your old post and found this code that you posted there:

Code:
Sub MakeAllTablesRegularRanges()
  Dim WS As Worksheet, LO As ListObject
  For Each WS In Worksheets
    For Each LO In WS.ListObjects
      LO.Unlist
    Next
  Next
End Sub


Thank you for it!
 
Upvote 0
Hello Rick!

I actually googled your old post and found this code that you posted there:

Code:
Sub MakeAllTablesRegularRanges()
  Dim WS As Worksheet, LO As ListObject
  For Each WS In Worksheets
    For Each LO In WS.ListObjects
      LO.Unlist
    Next
  Next
End Sub
I had completely forgotten about that code and, in particular, the Unlist method. Thank you for reminding me of it.
 
Upvote 0
Not a problem Rick! Thank you for keeping this forum going with all of your posts!
 
Upvote 0

Forum statistics

Threads
1,215,987
Messages
6,128,129
Members
449,425
Latest member
NurseRich

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top