Thank you all
The records contain information about products, in some of those products
the cost field is empty because the price is not fixed yet so I dont't
want
tthose records to show in report.
I have also tried in the format event th code
Me.Detail.Visible = Not IsNull(Me.TxtCost)
and it works.
Do you know which one of the suggested methods wil give faster report?
GL
fredg said:
Hi,
Please help, I want the records in a report where a field is empty
(null) to
skip and not shown.
Do you know how it is done?
Thanks
GL
One way is to code the Detail Section Format event:
Me.PrintSection = Not IsNull([FieldName])
Me.MoveLayout = Not IsNull([FieldName])
But why are any of these records in the report record source in the
first place?