Hello,
I’ve created three variables namely cnt, currPage, and lastPage. Their variable type is set to Int32. When I try to divide it using Assign Activity
I get this error: Compiler error(s) encountered processing expression “lastPage/currPage”. Option Strict On disallows implicit conversion from ‘Double’ to ‘Integer’
The division done here would result in a double (with decimal), while the variable you are trying to assign to is an Integer. It can either be cast to an Int and truncate the result, or use Round().