cuok
Programmer
- Dec 24, 2001
- 201
Hi fiends!
I have this query that works fine.
======== Query ===================================
SQL = "SELECT ComplicationsRespiratory.Id, ComplicationsRespiratory.HistoryActiveRespProb, ComplicationsRespiratory.DateCheck
FROM ComplicationsRespiratory
WHERE (((ComplicationsRespiratory.Id)=[forms]![frmrashi]![id]))
ORDER BY ComplicationsRespiratory.DateCheck DESC;
"
========== End Query ==================================
"HistoryActiveRespProb" is a MemoField
------------------------------------------------
the query gives result like this:
ID HistoryActiveRespProb (Memo)
1 A
1 B
1 C
1 D
----------------------------------------------------------
What i tried to do with no success is to get from (by?) this query the next result:
ID HistoryActiveRespProb (Memo)
1 A
B
C
D
A,B,C,D IN the SAME FIELD
How can i change/make a query to get (=as a 'chain') ALL "HistoryActiveRespProb" fields gathered into the last or first record or any other way?
Thanks for your help
CUOK