
Originally Posted by
Famfeld
I understand that. How can I get it displayed? Using a report? I think I understand this but may just be too inexperienced to make this happen.
Thanks for the help.
Give field 5 an alias in your query for that specific report which will concatenate your data i.e.
Code:
Field5: [Field1] & "_" & [Field2] & "_" & [Field3] & "_" & [Field4]
See what I use on my form where I use DDCP as an ALIAS which stands for Delivery Detail Contact Person. The [DCP] is the Delivery Contact Person field and the [DCN] is Delivery Contact Number where I concatenate as one field known as DDCP. So on the form you can call it by using an unbound text box by using: =([Field5])
Code:
DDCP: "Contact:" & " " & [DCP] & ", " & [DCN]