I have done some searching on this one and I have yet to find any information that sheds light on what I am trying to do. At lease from what I can understand.
Basically, I have a main form which has a single subform. The subform presents a datasheet view of a a query. The query results present information in such a manner that a single column, call it GroupCode, can have numerous duplicate entries. This is actually desired as a normalized database is not what I need. So, I could have entries in the GroupCode column like the following:
GroupCode
*************
96445
96445
96445
87343
87343
87787
87787
What I would like to do is highlight each set of rows with the same GroupCode in a similar background color. In other words, I would like all records with GroupCode 96445 to be highlighted a certain color. I would like to skip highlighting on 87343 GroupCodes, then apply higlighting again to 87787 GroupCodes. Basically, alternate highlighting such as is possible in Excel.
Is this even possible in Access? If so, are ADO Recordsets where I should be looking?
Thanks for any guidance on this issue.
Basically, I have a main form which has a single subform. The subform presents a datasheet view of a a query. The query results present information in such a manner that a single column, call it GroupCode, can have numerous duplicate entries. This is actually desired as a normalized database is not what I need. So, I could have entries in the GroupCode column like the following:
GroupCode
*************
96445
96445
96445
87343
87343
87787
87787
What I would like to do is highlight each set of rows with the same GroupCode in a similar background color. In other words, I would like all records with GroupCode 96445 to be highlighted a certain color. I would like to skip highlighting on 87343 GroupCodes, then apply higlighting again to 87787 GroupCodes. Basically, alternate highlighting such as is possible in Excel.
Is this even possible in Access? If so, are ADO Recordsets where I should be looking?
Thanks for any guidance on this issue.
Comment