I am working on fixing my Delegation Warning, and have read the Understand delegation in a canvas app - Power Apps | Microsoft Docs, which hasn't helped me. I have also read a bunch of articles and watched YouTube videos, and thought I had figured it out. However, I am still getting delegation warnings.
To give some background, I have a Gallery that is linked to the VT Contracts SP List, where I'm searching for all VT Contracts (column named VT Contract) that are active contracts. This list is small now, but will grow.
My original code was throwing up a delegation warning:
Filter('VT Contracts', searchBox_5.SearchValue in 'VT Contract' && 'Active Contract' = true)
The reason for the warning was because of the "in" and "&&"
I redid the code based on a YouTube video I had watched by Daniel Christian, which removed the delegation warning, but was now only showing when the Active Contract was equal to FALSE, when I clearly call out equal to TRUE
Filter('VT Contracts',StartsWith('VT Contract',searchBox_5.SearchValue) && 'Active Contract' = true)

I then redid the code a second time, which now is giving me the records when equal to TRUE, but now I am getting the delegation warning again.
Filter('VT Contracts',StartsWith('VT Contract',searchBox_5.SearchValue) && 'Active Contract' <> false)

What do I appear to be missing, or misunderstanding?