Hello Everyone,
Good day!
I need your help on how I can improve the performance when clicking a button.
I have this collection that contains thousand of data/entries and there are two buttons used to filter the display in gallery.
example: the button one filters the collection request on which status = 'complete' and the other button filters the same collection with status = 'freeze'. The problem is when clicking button 1 from button 2 or vise versa it loads like 10-15 sec. Is this normal or still can be improve?
Sample code of button 1:
ClearCollect(
colFilteredUserRequests,
Filter(
colUserRequests,
Status.Value = 'Complete'
)
);
Sample code button 2:
ClearCollect(
colFilteredUserRequests,
Filter(
colUserRequests,
Status.Value = 'Freeze'
)
);
Sample image: I click draft but takes 10-11 sec of time to load

Report
All responses (
Answers (