Okay I understand that part:
if value given: Value = Offset Values that makes--> Value/Offset Value = Answer
or another example with actual number:
if value given 55=16384 that makes--> 55/16384 = 297.890 (round off to 298)
So code I write:
Dim ValueGiven
ValueGiven = ValueGiven / 289
Now I am facing situation on factor that has 0 - 16384 and I understand 0 cannot be divided to anything. So I simply write
Dim ValueGiven
ValueGiven = 16384
Is that correct? IF NOT Please clearly explain it to me :)
