Hi,
I have the below report and I would like to change the color of the raw that has the lastest "TheTime" filed, how to do that?
I have the code to get the last record in the table:
Dim rs As Recordset
Set rs = CurrentDb.OpenRecordset("SELECT TOP 1 * FROM Turns ORDER BY ID DESC")
MsgBox ("Last Turn: " & rs!Person & " On " & rs!TheTime)
rs.Close
Set rs = Nothing
now how to change the color of the raw with the data selected?