G
Guest
I have a Cable_Num that is associated with multiple Raceway_Num and want to
be able to output on a report all the Raceway_Num Associated with Cable_Num.
Cable_Num Type Series .... Raceway_Num
Right now it looks like
P-151X MV-105 C-C-100 C-C-105P19393 C-C-104
I want it to look like
P-151X MV-105 C-C-100. C-C-105P19393, C-C-104
All the outputs on the report are in boxes. I am Populating Raceway_Num on
a sub report and putting that in the main Report.
The way I get the output is.
With this query
SELECT tblCable.Cable_Num, tblCable_Raceway.Cable_Num,
tblCable_Raceway.Raceway_Num, tblCable_Raceway.Order
FROM tblCable LEFT JOIN tblCable_Raceway ON tblCable.Cable_Num =
tblCable_Raceway.Cable_Num
ORDER BY tblCable_Raceway.Cable_Num, tblCable_Raceway.Order;
Then i just put Raceway_Num on the sub report and format the columns.
I think Concatinate is the answer I am just having trouble trying to apply
Duane's
function to my situation. Any suggestions would be appreciated.
be able to output on a report all the Raceway_Num Associated with Cable_Num.
Cable_Num Type Series .... Raceway_Num
Right now it looks like
P-151X MV-105 C-C-100 C-C-105P19393 C-C-104
I want it to look like
P-151X MV-105 C-C-100. C-C-105P19393, C-C-104
All the outputs on the report are in boxes. I am Populating Raceway_Num on
a sub report and putting that in the main Report.
The way I get the output is.
With this query
SELECT tblCable.Cable_Num, tblCable_Raceway.Cable_Num,
tblCable_Raceway.Raceway_Num, tblCable_Raceway.Order
FROM tblCable LEFT JOIN tblCable_Raceway ON tblCable.Cable_Num =
tblCable_Raceway.Cable_Num
ORDER BY tblCable_Raceway.Cable_Num, tblCable_Raceway.Order;
Then i just put Raceway_Num on the sub report and format the columns.
I think Concatinate is the answer I am just having trouble trying to apply
Duane's
function to my situation. Any suggestions would be appreciated.