Deleting table content apart from last 3 columns.

Fredek

Board Regular
Joined
Mar 8, 2011
Messages
65
Hi guys,

I can delete the entire content of the worksheet with the below code, however I have formulas in the last three columns. Is there a way I could keep the formulas but clear all the other cells of the table?


Code:
    Dim StrtSht As Worksheet
    Dim DestWbk As Workbook
Set StrtSht = ActiveSheet
    Set DestWbk = ActiveWorkbook
     Worksheets("Currency").ListObjects("GCMR_Data_tbl").AutoFilter.ShowAllData
    Worksheets("Currency").ListObjects("GCMR_Data_tbl").DataBodyRange.ClearContents


Many thanks,
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Code:
Worksheets("Currency").ListObjects("GCMR_Data_tbl").ListColumns(1).DataBodyRange.Resize(, .ListColumns.Count - 3).ClearContents
 
Upvote 0
Hi NoSparks,

thank you for your response. Unfortunately, I am getting an Invalid or Unqualified reference error.
 
Upvote 0
Oops...
the .ListColumns.Count needs to be fully qualified, same as .ListColumns(1), so it's referencing the same table.

Here's what I actually tested with
Code:
Sub testing()
    
    Dim oLo As ListObject
    
    Set oLo = Worksheets("Currency").ListObjects("GCMR_Data_tbl")
    
    With oLo
        .AutoFilter.ShowAllData
        .ListColumns(1).DataBodyRange.Resize(, .ListColumns.Count - 3).Select  'ClearContents
    End With
    
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,323
Members
452,635
Latest member
laura12345

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