@Virtzdmp
You can also implement the following suggestion (Purely Fx version) to display the mismatched cell values:
Within the forEach loop, utilize the syntax "ReadCell(CurrentItem, 3)" to retrieve the value of your third column.
Place this value within an if condition to compare it with false. If the third cell is false, a messagebox will display the mismatch.

Code:
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $fx'C:\Users\Documents\Number_Check.xlsx' Visible: True ReadOnly: False Instance=> ExcelInstance
Excel.ReadFromExcel.ReadAllCells Instance: $fx'=ExcelInstance' ReadAsText: True FirstLineIsHeader: False RangeValue=> ExcelData
LOOP FOREACH CurrentItem IN $fx'=ExcelData'
IF $fx'=If(ReadCell(CurrentItem, 3) = false,true,false)' THEN
Display.ShowMessageDialog.ShowMessage Title: $fx'Alert' Message: $fx'This is Mismatch : ReadCell(CurrentItem, 3)' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed
END
END
------------------------------------------------------------------------------------------------------------------------
If I've resolved your query, please consider accepting it as the solution and giving it a thumbs up to help others find answers faster.