Hi, I have the following code to Sort entries
for i = 1 to 4
for j=1 to 4
if getname( i ) > getname( j+1 ) then
sort = getname( j+1 )
getname( j+1 ) = getname( i )
getname( i ) = sort
end if
next j
next i
please help find out why it's not working!
thanks
for i = 1 to 4
for j=1 to 4
if getname( i ) > getname( j+1 ) then
sort = getname( j+1 )
getname( j+1 ) = getname( i )
getname( i ) = sort
end if
next j
next i
please help find out why it's not working!
thanks
Comment