Assuming the X,Y,Z are columns A,b,c and the data starts in row 2 the folowing will work, can be draged down for all rows
=RANK(B2,INDIRECT(("B" & (TRIM(A2)*3) -1 & ":B" & (TRIM(A2)*3) +1 )),1)
dont understand why you are wanting to place a formula in a cell programatically.
surley is better to place the result of the formula in the cell, that way the worksheet does not have to recalculate the values everytime you display them.
Or am I missing something
use a variable to build the...
Ok
this was pretty instant for me using 40000 rows
Dim mymessage As String
Set r = Worksheets("sheet2").Range("a1:a40000")
mymessage = ""
For n = 1 To r.Rows.Count
If r(n).RowHeight > 0 And r(n, 1) > " " Then
mymessage = mymessage & vbCrLf & r(n, 1) & " " & n...
Trying to access a Borland starteam folder from within VBA.
Does anybody have any examples of how to navigate the API.
I can sucessfully connect, but am having trouble navigating from views to folders & Files
'/////////////////////////////////////////////////////
Sub CommandButton1_Click()
'...
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.