@gcusello , The solution works , but i am getting all the fields values concatenated under one field. Is it possible we have have each field as separate for example, extending the below use case Your_search
| eval display_fields=case(myField="xyz", id." - ".salary." - ".department, myField="abc", location." - ".address." - ".phone, myField="ddd",age." - ".ht." - ".gender)
| table _time myField display_fields I want in below format _time myField Id salary department time vaue xyz 1 1000000 cse time value xyz 2 2000000 IT
... View more