Showing a lable on first line of detail only

  • Thread starter Thread starter karen scheu via AccessMonster.com
  • Start date Start date
K

karen scheu via AccessMonster.com

I have a report containing a group of order numbers and detail item numbers
within the order. I want to put the label "Item:" in beginning of detail
line as follows:
Item:[itemDesc]

How can I show the label "Item:" on the first detail row only so that it
looks like this:

Item: Item Desc 1
Item Desc 2
Item Desc 3

Thanks,
Karen
 
Create an Item group header section that is the same height as your detail
section. Add your label "Item:" to this section and add code to the On
Format event:
Me.Movelayout = False
 
Back
Top