Hello to all
I have an array consisting of three values:
Goofy, 10.50
Pluto, 20.30
Donald, 10.10
Goofy, 20,20
Donald, 20.30
and so on
I have to look for the name and in the array there can be up to 5
In the 'for' loop I can not understand which comparison parameter I have to use
For 1 to 70
mioarray = vNone (variable containing the name)
I tried with
myarray (loopindex-1) = vNone 'does not go'
myarray (loopindex-1,0) = vNone 'even'
myarray.curX = vNone 'no result'
I can not make a valid comparison that I extract the name because then I need the other two parameters but if I can not isolate the name -...
Thank you