C
ChrisA
I am trying to create a string of Product No's that I can then display as
one line as opposed to a column in the detail section. I will then make the
detail section hidden. However sometimes it works and sometimes not giving
me extra numbers or none at all. Believe it must be a formatting issue but
not clear how to resolve it. Using the following code.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
strProducts = strProducts & Format(Me.ProductNo, "!>@@@-@@@@-@@@") & ", "
End Sub
Private Sub GroupFooter2_Print(Cancel As Integer, PrintCount As Integer)
txtProducts = strProducts
strProducts = ""
End Sub
The idea is to use data from the hidden detail secion and show as summary in
the group footer if this is the best way.
Thanks
Chris
one line as opposed to a column in the detail section. I will then make the
detail section hidden. However sometimes it works and sometimes not giving
me extra numbers or none at all. Believe it must be a formatting issue but
not clear how to resolve it. Using the following code.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
strProducts = strProducts & Format(Me.ProductNo, "!>@@@-@@@@-@@@") & ", "
End Sub
Private Sub GroupFooter2_Print(Cancel As Integer, PrintCount As Integer)
txtProducts = strProducts
strProducts = ""
End Sub
The idea is to use data from the hidden detail secion and show as summary in
the group footer if this is the best way.
Thanks
Chris