@yuming1127 Can you please try this? With your provided sample data this will work. YOUR_SEARCH
| fields product description1 description2 weight_a weight_b weight_c
| eval description=mvappend("description1=".description1,"description2=".description2)
| eval weight=mvappend("weight_a=".weight_a,"weight_b=".weight_b,"weight_c=".weight_c)
| table product description weight My Sample Search : | makeresults | eval _raw="product description1 description2 weight_a weight_b weight_c
product_a string_a string_b number_a number_b number_c
product_b string_c string_d number_d number_e number_f
product_c string_e string_f number_g number_h number_i"| multikv forceheader=1
| fields product description1 description2 weight_a weight_b weight_c
| eval description=mvappend("description1=".description1,"description2=".description2)
| eval weight=mvappend("weight_a=".weight_a,"weight_b=".weight_b,"weight_c=".weight_c)
| table product description weight in case of multiple description and weight fields try this. YOUR_SEARCH
| fields product description1 description2 weight_a weight_b weight_c
| foreach description* [| eval description=mvappend(description,"<<FIELD>>="+'<<FIELD>>')]
| foreach weight_* [| eval weight=mvappend(weight,"<<FIELD>>="+'<<FIELD>>')]
| table product description weight My Sample Search : | makeresults | eval _raw="product description1 description2 weight_a weight_b weight_c
product_a string_a string_b number_a number_b number_c
product_b string_c string_d number_d number_e number_f
product_c string_e string_f number_g number_h number_i"| multikv forceheader=1
| fields product description1 description2 weight_a weight_b weight_c
| foreach description* [| eval description=mvappend(description,"<<FIELD>>="+'<<FIELD>>')]
| foreach weight_* [| eval weight=mvappend(weight,"<<FIELD>>="+'<<FIELD>>')]
| table product description weight Thanks KV ▄︻̷̿┻̿═━一 If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.
... View more