Jump to content

Return the greater number


Floppy
 Share

Recommended Posts

Hello, this script is driving me crazy. I have an array of numbers and I want to have the greater.

$job_soldi_magg = 0
 
For $z = 1 To (UBound($job_soldi)-1)
 
If $job_soldi[$z] > $job_soldi_magg Then $job_soldi_magg = $job_soldi[$z]
 
Next
 
MsgBox(0, 'Maggiore finale', $job_soldi_magg)

The array $job_soldi is this:

[0]|
[1]|0.15
[2]|18.06
[3]|4.88
[4]|1.12
[5]|0.21
[6]|0.09
[7]|0.09
[8]|0.09
[9]|0.06
[10]|0.39
[11]|0.18
[12]|0.24
[13]|0.03
[14]|0.78
[15]|0.18
[16]|0.24
[17]|0.84
[18]|0.30
[19]|0.24
[20]|0.12

The greater number is 18.06, but the script returns 4.88. :graduated:

Can someone explain me why this happens? Thank you!

Link to comment
Share on other sites

You do a string compare in your script.

Try this:

$job_soldi_magg = 0
For $z = 1 To UBound($job_soldi)-1
    If Number($job_soldi[$z]) > $job_soldi_magg Then $job_soldi_magg = Number($job_soldi[$z])
Next
MsgBox(0, 'Maggiore finale', $job_soldi_magg)
Edited by water

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

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...