Hi @Manc_Gurl
The best practice would be to show data in your galleries direct from your SQL data source.
Unless there is a specific need for you to use collections, I would avoid using them to grab filter data based on the current logged on user. This would also resolve the issue of you needing to keep a collection in sync with the source data when you add or update records.
If you cache the user timesheet data in a collection, there will be an upfront delay when you first populate the collection. The app may or may not display/require all the data, so you may be fetching data unnecessarily.
A Collect/ClearCollect will collect up to 2,000 records at a time. If your user timesheet data exceeds this, you'll need to write additional batching logic.
When you bind a gallery directly to a SQL data source, the 'explicit column selection' feature optimises performance to ensure that Power Apps retrieves only the fields that are necessary.