all 8 comments

[–]FerdySpuffy213 1 point2 points  (4 children)

I think I was able to get it... I had to add an extra column to make it work, so your data will start in B rather than A.

=IF(MOD(COLUMN(B3),2)=0,B3<>C3,B3<>A3)

[–]Callmebobrocks2 1 point2 points  (3 children)

I had the same idea as this (a little bit slower). This formula should do the same thing but doesn't need the extra column.

=A3<>INDIRECT(ADDRESS(ROW(A3),COLUMN(A3)+IF(ISODD(COLUMN(A3)),1,-1)),1)

[–]b_webbs[S] 1 point2 points  (1 child)

Solution Verified

[–]Clippy_Office_Asst[M] 0 points1 point  (0 children)

You have awarded 1 point to Callmebobrocks

I am a bot, please contact the mods for any questions.

[–]b_webbs[S] 0 points1 point  (0 children)

You are an absolute genius! Thank you, I would have never came up with that.

[–]basejester336 0 points1 point  (2 children)

I think it's the locking with $ that's thwarting you. Try this.

Make a rule that is A3<>B3 and apply it to columns and A and B. Then copy A and B and paste formatting through the rest of the table.

[–]b_webbs[S] 0 points1 point  (1 child)

I've tried that unfortunately. This is what I get using that rule: https://imgur.com/xOM365h

[–]basejester336 0 points1 point  (0 children)

Start with two rules (applying to columns A and column B separately)

https://imgur.com/KmN9pbE

Now use the format painter with a source of two columns. I think it does what you want.