What is the correct syntax for VB? I am trying to find if a number is > 1000 and is also equally divisable by 1000. So far I have...

...
Dim iAmount as Single

If iAmount > 1000 Then
MsgBox "Greater than 1000"
End If

...

Thank You