Hello everyone,
Just for information I do not have any experience in coding or building apps and this my first time building one, I am learning as I go. I created a simple app connected to sharepoint list and have two
1. As default all users can only create new list items but cannot view or edit.
2. Admin window can see all the list and edit items.
I followed some youtube guides and succeeded
1. My first question is that I have this warning about the delegation's problem but have no idea how to resolve it
2. My second question is that how do I sort that gallery by newest items on top?
and this is the code I'm using for the gallery:
Switch(
varTabSelected,
1,
Filter(
'TOOL-7-COMPLAINT',
'Trạng thái' = "Open"
),
2,
Filter(
'TOOL-7-COMPLAINT',
'Trạng thái' = "Handling"
),
3,
Filter(
'TOOL-7-COMPLAINT',
'Trạng thái' = "Closed"
)
)