Hi, I’m quite new to appGyver and already took a lot at a lot of tutorials, but can’t find anything concerning my problem. I would like to select different values in dropdowns and depending on this arrange my list underneath. Can sombody please help me with this?
Hi,
You could use the function ORDER.
Read about it ORDER
So to make nested sorts; for instance sorting list of animals by their weights. Then sorting them by their names you could nest the function as below:
ORDER(ORDER(pageVars.animals, item.weight), item.name,"desc")
All the best