Hi there,

The following If does not trigger when exps(i,1) =1 and T=1?

Is it because exps(i,1) is of type variant and T is of type double?

Code:
continue:
            If (totFwds(i) = 0 Or exps(i, 1) <= T) Then
            mu(i) = 0
            i = i + 1
            GoTo continue
            End If
Baz