Y
yator
I am using Dev Ashish’s ConcatFld function to concatenate fields from
different rows in the same table. The problem is that I need to concatenate
the fields in a specific order according to another field in the table called
“mess_sortâ€.
My Table structure:
tbl_message
mess_no
mess_sort
message
My SQL:
SELECT tbl_message.mess_no,
fConcatFld("tbl_message","mess_no","message","string",[tbl_message].[mess_no]) AS ConcatFinal
FROM tbl_message
GROUP BY tbl_message.mess_no
I there a way to control the order in which the fields concatenate?
different rows in the same table. The problem is that I need to concatenate
the fields in a specific order according to another field in the table called
“mess_sortâ€.
My Table structure:
tbl_message
mess_no
mess_sort
message
My SQL:
SELECT tbl_message.mess_no,
fConcatFld("tbl_message","mess_no","message","string",[tbl_message].[mess_no]) AS ConcatFinal
FROM tbl_message
GROUP BY tbl_message.mess_no
I there a way to control the order in which the fields concatenate?