Jump to content

Round to specifiedue


Bond
 Share

Recommended Posts

Hello,

I'm using one autoit script and wanted to values get rounded at specified rate. Below is the input.

Name    Value        Rounding rate       Expected value

Apple       152                 2.5                       152.5

Nokia        262                  5                         260

Samsung  348                10                        350

Vivoo         129               20                         120

My script is pulling first two column (name and value). I  need to round them as per mentioned rounding rate for each name.             

Any help will be appreciated. 

Link to comment
Share on other sites

I tried below logic and it works fine. No help needed now. thanks.

if $Name = "APPLE" Then  $roundingrate = 2.5
if $NAME = "NOKIA" Then  $roundingrate = 5

$temp1 = round($value / $roundingrate,0)
$Value2 = $temp1 * $roundingrate

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...