PDA

Click to See Complete Forum and Search --> : View data field with same value once only in the DataReport


Ashley18
May 19th, 2003, 03:22 AM
If i am using DataReport to view the data from MS-Access, how can i get some fields that may repeated just once on the DataReport?

For example, CustomerName and CustomerAddress which have many order details. I just wish to display the CustomerName and CustomerAddress once only on the top. Is that possible?

Thanks.

spud
Jun 4th, 2003, 02:14 PM
Place label into Page Header Section2


Private Sub DataReport_Initialize
DataReport1.Sections("Section2").Controls("label1").Caption = frmMain.text1.Text
End Sub