So how to do it the right way please?
Do I need to enter everything twice on my two views?
There must be a way to duplicate the content without the necessity to enter the data twice.
No need to duplicate data. You already likely have the same records in both views, but as @kuovonne pointed out, they’re in a different order. That order is controlled by a variety of things. Notice the different setup between your two views:
- The “Manage: all” view is sorting by two fields, one of which is the primary field.
- The “Group: active” view also has two sorts active, but it’s also grouping by one field, plus there’s a filter active.
Grouping means that records will be grouped by the data in a specific field (in this case, the {Status} field). Filtering means that only records matching certain conditions will be visible.
In your “Manage: all” view, the top record’s primary field says “Adapting”. When you change to the “Group: active” view, that “Adapting” record might still be there if it meets the filter criteria. If so, its position in the list will depend on how it’s being affected by that view’s grouping and sorting options.
Did you make these views yourself, or did someone else set up the views for you?