I have the following code:
Sub datefunctions()
rightMostColumn = Range("A4").End(xlToRight).Column
Set myRange = Worksheets("temp").Range(Cells(4, 1), Cells(4, rightMostColumn))
mindate = Format(Application.WorksheetFunction.Min(myRange), "yyyymmdd")
For i = 1 To...
Following on from my previous question on arrays (thanks for the help on that, BTW). I have the following code:
Dim myArry (1,3)
myArray (1,1) = "x"
myArray(1,2) = 1
myArray (1,3) = 1
.
.
.
ReDim Preserve myArray (2,3)
The ReDim statement throws a compilation error, "Array already...
I want to create an array which looks like the following:
----------------------------
HEADER1 | HEADER2 | HEADER3|
----------------------------
15 |20 |25 |
1 |2 |3 |
This is a dynamic array. It will have at least one column, but most likley more. If my...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.