Hi everyone.
i got data from google sheet into multiple lists. now i want to sort one list and all other list also should be in same order.
ex.
List1 Name : A,B,C,D,E,F
List2 Age : 5,7,2,8,4,9
List3 Last Name : a,b,c,d,e,f
now i want to sort list 2 (Age) in small to large number , when i sort it using sortbubble . i get data as below.
Age :2,4,5,7,8,9
Name : A,B,C,D,E,F
L Name : a,b,c,d,e,f
but i want as below ;
Age : 2,4,5,7,8,9
Name :C,E,A,B,D,F
L Name : c,e,a,b,d,f
i wish you understood .
Thanks in Advance