RE: Report statement body value
Hi,
This is because this field / row is inside a group.
Export the report as backup.
Delete the group of this row and try to print, it should be printed after all customer records.
You can also use the row visibility property.
In NAV2018 it is managed by a variable (GroupNo), and the hidden expression is:
=iif(Fields!GroupNo.Value = Last(Fields!GroupNo.Value, "DataSet_Result"), False, True)
I do not remember how is it handled in 2017 but you can try something like (if you want to keep the row grouped)
=iif(Fields!CustomerNo.Value = Last(Fields!CustomerNo.Value, "DataSet_Result"), False, True)
I hope it helps