By the way, here is an alternate method you could use...
.....
For I2 = 1 To 300
  If I2 / 25 = Int(I2 / 25) Then
    ' I2 is exactly divisible by 25... do what you want here
  End If
Next
.....