I want the User to be able to see their transactions in the layout from either their most recent purchase to their oldest, or vice versa. If there is no way to do this then how do I, at the very least, just get the collection to display from the most recent instead of the oldest like it is currently doing?
Under option choose sort data there is āa to zā and āz to aā if you want it to appear from the latest one choose on āz to aā
Or the allow pointing up
- Add two identical collections, and set their sort order in opposite directions.
- Create a User Specific boolean column in the table your screen is attached to (or in the User Profile row)
- Add a Button (or any actionable component to the screen), and configure an action as follows:
ā If Boolean is empty, then Set Column Values->Boolean->true
ā Else if Boolean is not empty, then Set Column Values->Boolean->Clear Value - Add opposite visibility conditions to your two collections. One should be visible when the boolean is checked, and the other should be visible when it is not.
2 Likes