Private Sub Detail_Format(Cancel As Integer, PrintCount As Integer)
If Me.Section(0).BackColor = vbWhite Then
Me.Section(0).BackColor = 14079702
Else
Me.Section(0).BackColor = vbWhite
End If
End Sub
This is my code i used. Yes my report detail is using two columns that run up to down each on half the page. I want to shade every other record. as it runs. My biggest question is, can you shrink the size of the columns. basically it has a description, item #, and a price running horizontally in the column. The gray runs about an inch beyond where my text boxes actually end so it looks stupid. I need to be able to stop the gray from going beyond my boxes.