Append to NumberList

Hi Is there an equivalent of AppendtoTextList for NumberList?

I have a multivalue number field and I Import a multivalue string into a variable and then assign it to the number list field. When I try to convert val(textlist), it throws Type Mismatch error. How do i do these?

In short, are there anyways to convert a all values in textlist to numeric and generate a multivalue number field?

Thanks in advance

Subject: Append to NumberList

Did you try something like :

doc.Numberlist = Evaluate(“numberlist : @ToNumber(stringlist)”, doc)

Subject: RE: Append to NumberList

There’s no one system call that will convert the whole array, but you could write a routine to iterate through the array and do this, returning the converted value.