Clearing Content from Dynamic cell range

sahaider

New Member
Joined
May 30, 2014
Messages
35
Hello All,

I would like to clear contents of a cell range whose row count is dynamic.
this is the code i have written:

Dim lastrow As Integer

'count no of filled rows first.
Set sht = Worksheets("LTE_Best Server by RSRP")

lastrow = sht.Cells(sht.Rows.Count, 2).End(xlUp).Row
Worksheets("LTE_Best Server by RSRP").Range("A2", "B" & lastrow).Select
Selection.ClearContents




but the above code is not working,

any advice would be appreciated.

Thanks

Syed
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
VBA Code:
Sub sahaider()
Dim lastRow As Long
With Sheets("LTE_Best Server by RSRP")
    lastRow = .Cells(.Rows.Count, 2).End(xlUp).Row
    .Range("A2", "B" & lastRow).ClearContents
End With
End Sub
 
Upvote 0
Another option
VBA Code:
Sub sahaider()
   With Worksheets("LTE_Best Server by RSRP")
      .Range("A2", .Range("B" & Rows.Count).End(xlUp)).ClearContents
   End With
End Sub
 
Upvote 0
Solution
Glad we could help & thanks for the feedback.
 
Upvote 0
Hello,

Thanks for the help previously.

Now i am trying to use the getopen application to open a csv file, copy its selected range in the background and paste it in another worksheet.

This CSV will have dynamic range which starts at A4 but ends in B(X), where X is dynamic for different csv.

This is the code:

FileToOpen = Application.GetOpenFilename(Title:="Browse for the LTE Best Server File", FileFilter:="CSV Files(*.csv),*csv*")
If FileToOpen <> False Then
Set Openbook = Application.Workbooks.Open(FileToOpen)

Openbook.Sheets(1).Range("A4", Range("B" & Rows.Count).End(xlUp)).Copy


ThisWorkbook.Worksheets("LTE_Best Server by RSRP").Range("A2").PasteSpecial xlPasteValues
Openbook.Close False



I am getting error in line: Openbook.Sheets(1).Range("A4", Range("B" & Rows.Count).End(xlUp)).Copy

Any help appreciated.

Thanks
 
Upvote 0
This is know a completely different question, so you will need to start a new thread. Thanks.
 
Upvote 0

Forum statistics

Threads
1,214,638
Messages
6,120,674
Members
448,977
Latest member
moonlight6

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