Yes you can use lerp also.
lerp works kind of like this.
lerp(sprite.startposition, sprite.endposition, 0.1)
0.1 is 10% of the distance per tick.
You can also try a plugin called liteTween you can find it here on the forums. It can do similar a thing but with much more nice acceleration and smooth movement. Highly recommended, as lerp is only linear.