I have a checkbox column [H-SD (Added)[ with this formula:
=IF([H-Supplier Type]@row = "Individual", IF(COUNTIF({SD-EmailPrimary}, [Email (Primary)]@row ) > 0, 1, 0), IF(COUNTIF({SD-EmailPrimary}, [Organization (Email)]@row ) > 0, 1, 0))
In another column, i want to evaluate if that column is checked or not, so I put this formula:
=IF([H-SD (Added)]@row = 1, "Checked", "Not Checked")
In some rows, where [H-SD (Added)] is checked, the formula returns "Checked".
And in other rows, where [H-SD (Added)] is also checked, the formula returns "Not Checked"
The formula is the same in both TEST1 rows, and while [H-SD (Added)] is checked in both rows, the formula returns something different.
Any explanation for this???