I want to get the number that is not multiplied by 200. Per example
X=900
Y=200
Q=X/Y = 4.50 // I want to get 100 from results
You are looking for the Modulus operator.
In VB you can do this as follows:
X=900
Y=200
Q=X Mod Y
Q will be equal to 100.