a:="20"b:=“30”
c:=“40”
i have script that computes totals. how can i get the highest total down to the lowest total using lotus script? THanks
output will be like this
total1 40
total2 30
total3 20
a:="20"b:=“30”
c:=“40”
i have script that computes totals. how can i get the highest total down to the lowest total using lotus script? THanks
output will be like this
total1 40
total2 30
total3 20
Subject: Get the Highest Number
Paul,I guess you need to output the values to an (integer) array and then do a bubble sort in the direction you want. You should be able to find a suitable algorithm on the web.