How to define a range in a different Excel App

nigelh

New Member
Joined
Nov 28, 2007
Messages
29
I have an Excel 2010 VBA based application where one of the report outputs is to be annotated by the user and then sent out by email. Because the user wants to refer to open workbooks when annotating the report, I have been asked to generate the report in a new instance of Excel - it means they can keep the report open on one screen, while reviewing the source data on another. I can create the report, and fill out the details without too many problems, my problem comes when I try to format the report - and particularly add borders around various ranges. Usually, I set a range to be the cells I want to format, and everything works fine. However, when I try to define the range in the second Excel instance, I get "Global method of range failed..."

The code snippet below is extracted from the application, and shows the main steps of what I am trying to achieve. It is the indicated line that causes the problem.

<code>
Sub Test()
Dim subApp As Object
Dim wSubSheet1 As Worksheet
Dim oListRange As Range

Application.Caption = "Main Window"
Set subApp = New Excel.Application
With subApp
.Visible = True
.Caption = "Sub Window"
End With

AppActivate "Sub Window"
Set wSubSheet1 = subApp.Worksheets(1)

' Create the list
With wSubSheet1
.Cells(1, 1).Value = "List"
.Cells(2, 1).Value = "ABC"
.Cells(3, 1).Value = "DEF"
End With

' Define the range
'********* THIS IS THE LINE THAT FAILS ***********
Set oListRange = Range(wSubSheet1.Cells(1, 1), wSubSheet1.Cells(3, 1))

' Add Borders to the range
With oListRange
With .Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.Weight = xlThin
End With
End With
' and the rest ........
End Sub
</code>

Any thoughts or ideas gratefully received
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
You just need to qualify the Range property too:
Code:
Set oListRange = wSubSheet1.Range(wSubSheet1.Cells(1, 1), wSubSheet1.Cells(3, 1))
 
Upvote 0
Thanks, Rory. Works a treat. It was the one combination of qualifiers I never thought to try!
 
Upvote 0

Forum statistics

Threads
1,215,208
Messages
6,123,644
Members
449,111
Latest member
ghennedy

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