Hello, So, is multivalue the only way to use list/array? If I want to assign 7 values, should I use mvappend 7 times like the following?
| eval test = mvappend("0", test)
| eval test = mvappend(...
See more...
Hello, So, is multivalue the only way to use list/array? If I want to assign 7 values, should I use mvappend 7 times like the following?
| eval test = mvappend("0", test)
| eval test = mvappend("1", test)
| eval test = mvappend("2", test)
| eval test = mvappend("3", test)
| eval test = mvappend("4", test)
| eval test = mvappend("5", test)
| eval test = mvappend("6", test)
How do I get true/false return if I want to see if number 5 is in the array/list? MVfind only give me the position of 5, which is 1.
| eval n = mvfind(test, "5")
Thank you