@Shashank_87
Can you please try the following search? Note: Here, I have assumed the Event field contains the combinations.
YOUR_SEARCH
| eval Event=mvsort(Event)
| eval Event=mvjoin(Event,",")
| top Event
| eval Event=split(Event,",")
My Sample Search:
| makeresults
| eval Event="A,B,C,D|B,C,D,E|A,B,C,D|B,C,D,E|X,Y,Z|B,A,C,D"
| eval Event=split(Event,"|")
| mvexpand Event
| eval Event=split(Event,",")
| table Event
| eval Event=mvsort(Event)
| eval Event=mvjoin(Event,",")
| top Event
| eval Event=split(Event,",")
Here I have managed multivalue with the different order. If you don't want it then remove | eval Event=mvsort(Event) from search.
Thanks
... View more