for loops can i loop in hundreds?

I have the following

for ((i=100; i<=1000; i++))
do

this goes in increments of 1

I need it to go up in increments of 100, how is that done in a for loop?

for ((i=100; i<=1000; i+=100))
do
   ...