Stuck again. I'm just not understanding this math
adval0 = 2904
result = adval0 / 15100
remainder = adval0 // 15100
result = 0
remainder is 2904
How do I get the acutal number it should be 0.192xxx?
I'm looking at dig but not sure if thats the right thing to use because it will not always be 2 digits...
adval 0 = 2904*10
result = adval/151
192
then use dig to move the places... and do something like
if > 9999
if > 999
to figure out where the . should be... Is this the best way to do it?
Bookmarks