I am new to Power Apps but working on a SP List (Safety Good Catch Items). As shown below, I have created a Filter Container and want to Filter records on Status OR AssignedTo (I can see that I will need additional Filters using AND in the future). Regardless, I have the following and am trying to see...
1. All records OR
2. Records with Status = Selected Radio Button OR
3. AssignedTo = Selected Dropdown result
Filter('Safety Good Catch Items',Status.Value = Radio2.Selected.Value || AssignedTo.Value = DrpdwnAssign.Selected.Result || Radio2.Selected.Value=Blank())

I am not receiving the results I expect. If I select an AssignedTo (with no Status choice), ALL records are still displayed. I assume it is in my OR logic. Again, another filter will soon include Status = In Process by Assigned To.