My query has pairs of fields form 2 tables that I want to compare.<br>I do a recordset clone in my Open event for the Form, then iterate through the fields checking for a change in pairs of fields.<br><br>Dim comp1 as varient, comp2 as varient<br>For indx = 0 to 16 <br> comp1 = RSMT.Fields(indx).Value<br> comp2 = RSMT.Fields(indx + 17).Value<br>etc.........<br><br>I want to set the corresponding field on the Form to a color when the pairs are not equal. <br>No problem in checking the pairs, but how do I set the field on the Form. I know the relative location of the fields through the index, but need the syntax. What is the way to iterate through fields on the Form ie. the Me.