Hi guys. So ive been having alot of issues with delegation using sharepoint as a database. However i stumbled upon a hack that ensures i dont get delegation warnings.. For instance i used this script below
Sort(SPList, NumberColumn, descending)
to get the gallery populated based on certain number field on sharepoint in descending order. Im getting a delegation ⚠️ warning prolly because sort function using number column is not delegable. However i was able to create 2 galleries.
1st gallery called Gallery1 with item propery of SPList, then 2nd gallery called Gallery2. On the gallery2 item property, i used the formula below
sort(Gallery1.Allitems, NumberColumn, Descending)
and this did not throw any delegation error.
I just wanted to know if i was truly able to bypass this delegation issue using this method