A would like a Check Box Cell to be flagged if the following conditions are met:
- Column "EDI Error Type" = X
AND
- Column "Error Details" has a duplicate value.
*The columns considered are both TEXT and column to be updated is a Checkbox type.
I am currently using this formula to flag a box that considers a single column and it works perfectly, I would just like to enter another variable..
=IF(ISBLANK([Integration Key]@row), 0, IF(COUNTIF([Integration Key]:[Integration Key], [Integration Key]@row) > 1, 1, 0))