Alternating Records on a Report

D

dan.cawthorne

Hello All

I've been able to create the alternating records on a report by using
the following code on the parent report.

If Me.Detail.BackColor = vbWhite Then
Me.Detail.BackColor = vbGreen
Else
Me.Detail.BackColor = vbWhite
End If

but what the problem is i have a linked sub report on the parent
report,

and the sub report is white, can i make this transparent? or alternate
in sequence with the parent Report?

the sub report is only one field, but allows me to show multiply
clients assigned to a project.

I've looked into making in transparent and no luck :(
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top