문제

I would like to ask if there is a way to return text if exactly 3 cells in a row are equal to another 3 cells in another row.

Example of how I want it to look like.

enter image description here

도움이 되었습니까?

해결책

You could try the formula:

=IF(COUNTIFS(A:A,A1,B:B,B1,C:C,C1)>1, "ERROR", "OK")

COUNTIFS(A:A,A1,B:B,B1,C:C,C1) counts the number of times a series of cells A1, B1 and C1 appear in the columns A, B and C.

If it's above 1 (there's more than one), put ERROR, else OK.

다른 팁

Try making a new cell by using the CONCATENATE() function to join the three cells together. Then use formatting to highlight duplicates in the new column.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top