ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Creation of a range with no specified address (https://www.excelbanter.com/excel-programming/295741-creation-range-no-specified-address.html)

Adrix[_2_]

Creation of a range with no specified address
 
Hello

Somone knows how can i set a range (with the same property an
actions) ,defining the number of cell but not defining where it will b
located?
eg: a window (2X2) wich the cell(1,1) is fixed "my name"

I am trying this

Function windowx(cellx) As Range

cellx.Value = "myname"

Set windowx = Range(cellx, celx.Offset(1, 1))

End Function

and i am getting " object required"

All help wiil be welcome

thank yo

--
Message posted from http://www.ExcelForum.com


BrianB

Creation of a range with no specified address
 
We do not normally use UDFs to perform actions but to return values. S
I have used a subroutine. :-

'=================================
Dim Mywindowx As Range
'-------------------
Sub test()
windowx Application.ActiveCell
MsgBox (Mywindowx.Address)
End Sub
'--------------------
'-
Sub windowx(cellx As Range)
cellx.Value = "myname"
Set Mywindowx = Range(cellx, cellx.Offset(1, 1))
End Sub
'=================================

--
Message posted from http://www.ExcelForum.com


Adrix[_3_]

Creation of a range with no specified address
 
Thank you very much for the sugestion. Brian

--
Message posted from http://www.ExcelForum.com



All times are GMT +1. The time now is 11:08 AM.

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