That function will take a loooooong time to check a large number, and it only accommodates numbers to the size of a Long. Try this one (same instructions as Roger suggested, but you can't have both in the same workbook, since they have the same name).
Function IsPrime(d As Double, Optional bFirstFactor As Boolean = False) As Variant
' Returns: if d is:
' #VALUE! < 2
' "Too big!" > 1E+15
' #VALUE! <> Int(d)
' FALSE composite and bFirstFactor = False or omitted
' 1st factor composite and bFirstFactor = True
' TRUE prime
Const dMax As Double = 1E+15
Dim dDiv As Double
Dim dRt As Long
If d < 2 Then
IsPrime = CVErr(xlErrValue)
ElseIf d = 2# Or d = 5# Then
IsPrime = True
ElseIf d > dMax Then
IsPrime = "Too big!"
ElseIf Int(d) <> d Then
IsPrime = CVErr(xlErrValue)
Else
' can't use Mod with numbers bigger than Longs, so ...
Select Case Right(CStr(d), 1)
Case "0", "2", "4", "6", "8"
IsPrime = IIf(bFirstFactor, 2, False)
Case "5"
IsPrime = IIf(bFirstFactor, 5, False)
Case Else
For dRt = 3 To Int(Sqr(d)) Step 2
dDiv = d / dRt
If Int(dDiv) = dDiv Then
IsPrime = IIf(bFirstFactor, dRt, False)
Exit Function '----------------------------------------->
End If
Next dRt
IsPrime = True
End Select
End If
End Function
If you want the first factor instead of False when the number is not prime, set the optional second argument TRUE.
Bookmarks