Processes in Microsoft 365 for setting up Office apps, redeeming product keys, and activating licenses.
It sounds like the issue might be related to the sorting behavior in Excel tables. When you insert a new row between existing rows, the formulas might not automatically update as expected.
One way to handle this is by using the SORT function directly on the data, rather than relying on sorting through the Excel interface. This way, the entire row, including the assigned record number, should stay together.
Assuming your data is in a table named "YourTable," you can use a formula like this to create a sorted view:=SORT(YourTable, 6, 1)
Here, "6" represents the column number where the pickup time is located, and "1" indicates sorting in ascending order. Adjust the column number accordingly.
This formula creates a dynamic sorted view of your table that should update automatically when new data is added. It preserves the relationships between the record number and the corresponding client data during sorting.