Hello, i am building an app wher ei have 4 radio buttons that are used to filter the results. my If statement works for some of the scenarios but not all of them, and i'm trying to figure out why. Each record has 2 boolean fields, Process Confirmed, and Resolved.
my 4 states are;
All Records - No filter applied
Unresolved - Resolved <> true
Resolved but not Completed - Resolved = true, & Process Completed <> true
Completed - Resolved = true & Process Completed = true
Here is my statement;
If(Radio1.SelectedText.Value = "Unresolved",Filter('Defect Tracking',Resolved <> true),
If(Radio1.SelectedText.Value = "Resolved but not Completed",Filter('Defect Tracking',And(Resolved = true, 'Process Confirmed' <> true)),
If(Radio1.SelectedText.Value = "Completed",Filter('Defect Tracking',And('Process Confirmed' = true,Resolved = true)),
'Defect Tracking')))

The completed selection is not working for me. based on my data, only record 1 should show up since both items are true, however, only record 3 shows up. I'm a little confused as to why this is happending, since none of the other unresolved records are showing up.

Any idea how i fix this so this ste will show records where Resolved and Process Confirmed are both true?