Macro to convert Table to a range

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,570
Office Version
  1. 2021
Platform
  1. Windows
I have written code below to convert a table to a range

However I get a run time error "object does'nt support this property or method" and code below is highlighted

Code:
With .UsedRange


See full code


Code:
 Sub ConvertTabletoRange()
With Worksheets("Reports Outstanding")
.ListObjects(1).Unlist
 With .Range("A1:D1").Font
.Bold = True
.Color = vbBlack
With .UsedRange
.Borders.LineStyle = xlContinuous
.Borders.Weight = xlThick
.Cells.Interior.ColorIndex = xlNone
   End With
      End With
        End With
     
End Sub


It would be apprciated if someone could kindly assist me
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi howard,

small changes:

VBA Code:
Sub ConvertTabletoRange()
With Worksheets("Reports Outstanding")
  .ListObjects(1).Unlist
  With .Range("A1:D1").Font
    .Bold = True
    .Color = vbBlack
  End With
  With .UsedRange
    .Borders.LineStyle = xlContinuous
    .Borders.Weight = xlThick
    .Cells.Interior.ColorIndex = xlNone
  End With
End With
End Sub

Ciao,
Holger
 
Upvote 0
Another option...
VBA Code:
Sub Convert()
    Dim r As Range
    If Worksheets("Reports Outstanding").ListObjects.Count > 0 Then
        With Worksheets("Reports Outstanding").ListObjects(1)
            Set r = .Range
            .Unlist
        End With
        
        With r
            With .Range(.Cells(1, 1), Cells(1, 4))
                .Font.Bold = True
                .Font.Color = vbBlack
            End With
            .Interior.ColorIndex = xlColorIndexNone
            .Borders.LineStyle = xlContinuous
            .Borders.Weight = xlThick
        End With
    End If
End Sub
 
Upvote 0
Many Thanks Holger & Kevin


Code works perfectly
 
Upvote 0

Forum statistics

Threads
1,216,178
Messages
6,129,327
Members
449,502
Latest member
TSH8125

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