Column1 column2 column3
abc 1
def 2
ghi 3
jkl 4
abc 7
def 8
ghi 9
jkl 5
| stats values(*) as * by Column1
View solution in original post
Final result should be like this:
abc 1 7
def 2 8
ghi 3 9
jkl 4 5
@ITWhisperer THANKS!! it works