Hi, see mvappends, works fine for me to agrregate 2 MV fileds into a new field..
mvappend(X,...)
This function takes an arbitrary number of arguments and returns a multivalue result of all the values.
The arguments can be strings, multivalue fields or single value fields.
... | eval fullName=mvappend(initial_values, "middle value", last_values)
... View more