Hi @to4kawa This method works perfectly if there is only one row. Would it be possible to make it work for multiple rows? | makeresults
| eval x="another_single_value_field"
| eval f1=split("a1,a2,a3",",")
| eval f2=split("b1,b2,b3",",")
| eval f3=split("c1,c2,c3",",")
| eval f4=split("d1,d2,d3",",") | append [ | makeresults
| eval x="another_single_value_field"
| eval f1=split("x1,y2,z3",",")
| eval f2=split("x1,y2,z3",",")
| eval f3=split("x1,y2,z3",",")
| eval f4=split("x1,y2,z3",",") ] Thanks!
... View more