Can I return fail response eventhought the test shows pass

Hello, I am trying to get a FAIL when a test condition is met, but because of the logic, if the condition is met in the response body then it will PASS.
Is there a way to make it be a “Failed” test?

The image below shows a Pass test result since it met the first condition, but I really want that to be a Failed test…

You can “manually” fail a request:

pm.expect.fail(‘This failed because …’);

Thank you so much! This worked beautifully!