Hi!
I have a problem in Excel 2007. I need to compare one value - letter "C" - to a range of cells that are on one row. The problem is that the values should be in every other cell.
So if I have a row like this - C 434 C 324 C 3453 - it should say in a cell in the end - OK And if I have a row like this - C 22 B 665 C 8877 - it should say - error as not all are C's.
Should be done as a formula not VBA.
So the question is is it possible to check if every other cell in a row ( a range ) contains a value C and output a value based on that.
PS! There are too many rows to do it by hand like this (pseudocode) =IF(AND(A1="C"; A3="C");"ok";"error")
Thanks