I have a large Union query, where I am joining many fields together so they display as follows.
Header
Entry 1
Entry 2
Header
Entry 1
Entry 2
Entry 3
My problem is that each entry is limited to 255 chars even though it is based on a memo field. To get around this I have tried to use this:
ProgMgt2OPN: Mid([Program Management_OPN],256,255)
and scan to the next 255 chars. This works but I need a way to concatenate the next 255 chars onto the first 255 in SQL.
The method below puts the second 255 chars under a new heading which I do not want. If I insert ...[Program Management_OPN], [ProgMgt2OPN] FROM ... An error about the columns not being equal comes up.
UNION Select "c (1) Program Management", [Program Management_OPN] FROM [Mk 53 01Jan Source]
UNION Select "c (1) Program Management1 ", [ProgMgt2] FROM [Mk 53 01Jan Source]
Please help.
Thanks,
Jimmy
Header
Entry 1
Entry 2
Header
Entry 1
Entry 2
Entry 3
My problem is that each entry is limited to 255 chars even though it is based on a memo field. To get around this I have tried to use this:
ProgMgt2OPN: Mid([Program Management_OPN],256,255)
and scan to the next 255 chars. This works but I need a way to concatenate the next 255 chars onto the first 255 in SQL.
The method below puts the second 255 chars under a new heading which I do not want. If I insert ...[Program Management_OPN], [ProgMgt2OPN] FROM ... An error about the columns not being equal comes up.
UNION Select "c (1) Program Management", [Program Management_OPN] FROM [Mk 53 01Jan Source]
UNION Select "c (1) Program Management1 ", [ProgMgt2] FROM [Mk 53 01Jan Source]
Please help.
Thanks,
Jimmy