Report group header formatting

  • Thread starter Thread starter Mary
  • Start date Start date
M

Mary

Is it possible to avoid the carriage return that occurs
with each group header? That is, if you have 2 headers,
both fields will print on the same line for the first
record. Does that make sense?
Thanks,
Mary
 
Mary said:
Is it possible to avoid the carriage return that occurs
with each group header? That is, if you have 2 headers,
both fields will print on the same line for the first
record. Does that make sense?

I think it makes sense, if you're saying what I think you're
saying ;-)

Add a line of code to the header's Format event procedure:
Me.MoveLayout = False
 
Back
Top