Hello, I have a query that produces one column of five rows.
In each row, there is one sentence.
I would love if the sentences could be reported in one row, separated by periods.
Here is my SQL query:
SELECT TOP 5 Replace([TXT],"Member","Jeff") AS Expr1
FROM [ADHD/ODD]
ORDER BY Rnd(Int(Now()*id)-Now()*id);
An example of a current return would be:
Asked Jeff Jeff to list ways anger has negatively impacted daily life and health
Parent(s) were taught the importance of praise, support and encouragement.
Demonstrated for Jeff that counting backward from 10 to 0 is an effective strategy in remaining calm during an argument.
Jeff described progress of engaging in recreational activities as generally helpful.
Staff taught Jeff the reality of natural and logical consequences for disruptive and acting out behaviors.
I would love to have it return as:
Asked Jeff Jeff to list ways anger has negatively impacted daily life and health. Parent(s) were taught the importance of praise, support and encouragement. Demonstrated for Jeff that counting backward from 10 to 0 is an effective strategy in remaining calm during an argument. Jeff described progress of engaging in recreational activities as generally helpful. Staff taught Jeff the reality of natural and logical consequences for disruptive and acting out behaviors.
Unsure if this matters, but I run it in a report, and there would be margins.
I've searched the web until I'm blue, no luck. Any help is greatly, greatly appreciated! Thanks![]()