Hello there!
We have an inspection form that populates an excel spreadsheet (can't use MS Forms because the functions we need don't exist in it). Answers are either "Pass" or "Fail". I can get the latest entry using last():
last(body('List_rows_present_in_a_table')?['value']) Which returns the entire row as an object in JSON:

The problem is, I need to extract only the columns that equal "Fail". I've looked everywhere, and found lots of ways to pull the value based on the key, but not the other way around. Do I have to use "Apply to Each", and if so, what would that look like?