Hello everyone this is my first post.
My problem is dividing a variable with another variable when the last variable is a decimal. The program returns "division with zero" even though its not zero at all.
Public firstvariable As Long
Public secondvariable As Long
laks = 100
discolaks = 0.3
willcausethebug = firstvariable / secondvariable
My problem is dividing a variable with another variable when the last variable is a decimal. The program returns "division with zero" even though its not zero at all.
Public firstvariable As Long
Public secondvariable As Long
laks = 100
discolaks = 0.3
willcausethebug = firstvariable / secondvariable
Comment