ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Which is unsupported? (https://www.excelbanter.com/excel-programming/345210-unsupported.html)

davegb

Which is unsupported?
 
Simple code:
Sub CRSPPPMod()
Dim Wksht As Worksheet
Call Clean
Set Wksht = ActiveSheet
Wksht("Sheet1").Range("A8:AE1000").Select<----ERROR
Selection.UnMerge

End Sub

Getting an "object does not support this property or method" error at
marked line. I checked the Object Browser. I think it says that a
worksheet can have a range, and a range can be selected. So how am I
misinterpreting the OB?
Thanks in advance.


Chip Pearson

Which is unsupported?
 
You cannot select a range on a sheet that is not the active
sheet. You must select the worksheet first, then select the
range. E.g.,

Worksheets("Sheet1").Select
Range("A8:AE1000").Select


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com




"davegb" wrote in message
oups.com...
Simple code:
Sub CRSPPPMod()
Dim Wksht As Worksheet
Call Clean
Set Wksht = ActiveSheet
Wksht("Sheet1").Range("A8:AE1000").Select<----ERROR
Selection.UnMerge

End Sub

Getting an "object does not support this property or method"
error at
marked line. I checked the Object Browser. I think it says that
a
worksheet can have a range, and a range can be selected. So how
am I
misinterpreting the OB?
Thanks in advance.




Rowan Drummond[_3_]

Which is unsupported?
 
You have declared the object variable Wksht and then set it to the
activesheet so you don't need the sheet name anymo

Set Wksht = ActiveSheet
Wksht.Range("A8:AE1000").Select
Selection.UnMerge

Regards
Rowan

davegb wrote:
Simple code:
Sub CRSPPPMod()
Dim Wksht As Worksheet
Call Clean
Set Wksht = ActiveSheet
Wksht("Sheet1").Range("A8:AE1000").Select<----ERROR
Selection.UnMerge

End Sub

Getting an "object does not support this property or method" error at
marked line. I checked the Object Browser. I think it says that a
worksheet can have a range, and a range can be selected. So how am I
misinterpreting the OB?
Thanks in advance.


davegb

Which is unsupported?
 
Thanks to you both!


Rowan Drummond[_3_]

Which is unsupported?
 
You're welcome.

davegb wrote:
Thanks to you both!



All times are GMT +1. The time now is 12:03 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com