Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
example: Eq 1 :value = (number of apples * 23 )/5 for this i get number with decimals like 1234.32
Eq 2: value1 = value * 89
While displayinng ''value'' it has to display with decimals ,but while multiplying in equation 2 , i have to multiple with only integer in value1 equation.
How could i achieve this.
If I've understood the question, one of these?
value1 = floor(value)*89
value1 = round(value)*89
value1 = ceil(value)*89
If I've understood the question, one of these?
value1 = floor(value)*89
value1 = round(value)*89
value1 = ceil(value)*89