I have Format and Print events in my 2003 reoprt, but S7 indicates that post 2003 the Format event has been renamed to Paint instead. You may need to look into this in more detail.
The rest of what is required is included in S7's post #10. I would try (test) this approach before resorting to subreports (which may also work, but may be more than you need).
Code:
Option Compare Database Option Explicit Private dblHeight As Double Private Sub GroupHeader1_Format(Cancel As Integer, FormatCount As Integer) With Me If dblHeight = 0 Then dblHeight = .Image39.Height .Image39.Height = IIf(IsNull(.Image39), 0, dblHeight) End With End Sub
Comment