私は VBA を使用してペアごとの勾配を計算し、それらを配列に格納してから、Chip Pearson のワークシート上の配列を転置してそれらを並べ替える手法を使用しています。勾配の数が 65K を超えると、コードが失敗します。これは、行数が原因で、Excel 2003 では意味があります。Excel 2010 で動作すると思っていましたが、同じ問題があるようです。Resize プロパティまたは Transpose メソッドに制限があるかどうかは誰にもわかりませんか?
ありがとう
Sub pairwise()
Dim endrow As Long, i As Long, j As Long, s As Long
Dim num As Double, denom As Double, sij As Double
Dim r As Range
Dim slopes()
endrow = Range("A1").End(xlDown).Row
n = endrow - 1
nrd = endrow * n / 2
ReDim slopes(nrd)
Debug.Print LBound(slopes); UBound(slopes)
For i = 1 To n
For j = (i + 1) To endrow
num = Cells(i, 2).Value - Cells(j, 2).Value
denom = Cells(i, 1).Value - Cells(j, 1).Value
If denom <> 0 Then
sij = num / denom
slopes(s) = sij
s = s + 1
End If
Next j
Next i
Set r = Range("C1").Resize(UBound(slopes) - LBound(slopes) + 1, 1)
r = Application.Transpose(slopes)
' sort the range
r.Sort key1:=r, order1:=xlAscending, MatchCase:=False
End Sub