I uploaded the file to megaupload for a reference. you can find it here: download
What I am trying to achieve is a conditional formatting of rows in a table looking for changes based on a backup of an older table.
so if there was made any change to the table and it doesn't match the backup, then the row where the change was performed will change it's style.
what I managed to do is to add a formula(=IF(OR(B2<>'1LinkBU'!B2,C2<>'1LinkBU'!C2,D2<>'1LinkBU'!D2),1,0))checking if the rows are not equal to their counterparts on the backup table. if anything was changed in this row the formula cell gets a value of 1. and then in the conditional formatting I selected the second row and in the formula I said that if E2 = 1 then the formatting is valid.
the thing is, this table supposed to grow a lot and be used by users who doesn't know how to use formulas as well as it really isn't convenient to enter a specific conditional formatting for each raw...
So I wanted to know if anyone knows a better way to achieve my goal.
also, in the linked file I uploaded I recorded a macro that creates the row style I want but I don't know how to create a code that will use it. is it possible to go through row2 down to what ever will be the last row and for each "1" value in the E column apply the Row style to the whole row?
Thank you for your time, Jake