Is there any way of creating a report listing that shows the details in a ‘normal – paragraph fashion’ rather than a long list. I need to limit the depth of a sub-report which contains names associated to each company in the main report. One company has > 20 so i would like just a paragraph of names in this instance.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Report data in rows not columns
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Report data in rows not columns
- This topic has 3 replies, 3 voices, and was last updated 24 years, 5 months ago.
AuthorTopicWSfatherjack
AskWoody LoungerJanuary 4, 2001 at 10:51 am #351555Viewing 1 reply threadAuthorReplies-
WSjimalmaguer
AskWoody LoungerJanuary 6, 2001 at 2:52 pm #509379I can think of two things. Create a subform and link it to your main form using the child field/Parent field Property of the subform. Size the subform on your main form to the largest size you need it to be. Set it’s Can Grow property to NO. Next go to the subform’s page layout to set up as many columns you need and which way you want the data to flow in the columns. When you run the main report the data in the subform will flow into the columns instead of expanding downward. You have to make sure you size the subform properly so that no data is cut off since the Can Grow property is set to NO.
Another option involves coding. You could create an unbound text box and populate it by looping through a recordset in the GroupHeader format event, separating the data by commas. Group By the company and place the text box in the group header not the detail section. Set the Can Grow property to YES. Here is how I have done this using DAO.
Dim dbs As Database, rst As Recordset, strSQl As String
strSQl = “SELECT Employees.CompanyID, ”
strSQl = “Employees.EmployeeName, ”
strSQl = strSQl & “FROM Employees ”
strSQl = strSQl & “WHERE (((Employees.CompanyID)=” & Me.CompanyID & “));”Set dbs = CurrenDb
Set rst = dbs.OpenRecordset(strSQl)With rst
‘Check if there are any records. If not exit.
If .EOF = True And .BOF = True Then
Exit Sub
End IfDo Until .EOF = True
‘If there is no value in the text box add the first name
If Len(Me.txtNames & “”) = 0 Then
Me.txtNames = !EmployeeNameElse
‘Add the next names
Me.txtNames = Me.txtNames & “, ” & !EmployeeName
End If
‘Move to the next record
.MoveNext
Loop
End Withrst.Close
Set rst = Nothing
Set dbs = Nothing -
WSjimalmaguer
AskWoody Lounger
-
-
WScharlotte
AskWoody LoungerJanuary 7, 2001 at 6:29 am #509489Here’s a code routine that will work in either 97 or 2000 and will return a delimited list of values from the specified table or query field based on the where string you pass it. You could use this in the underlying query. Your field in the query grid might look like this:
Companies: BuildValuesList(“tblCompanies”,”CompanyName”,”[CompanyID]=” & [CompanyID],”/”)
Public Function BuildValuesList(ByVal strTblName As String, _
ByVal strValueField As String, _
ByVal strWhere as String, _
Optional strSeparator As String = “;”) As String
‘Created by Charlotte Foust 1/6/001
Dim dbs As DAO.Database
Dim rst As DAO.Recordset
Dim strValues As String
Dim fldText As DAO.Field
Dim strSQL As StringstrSQL = “SELECT * FROM ” & strTblName & ” ” & strWhere
Set dbs = CurrentDb()
Set rst = dbs.OpenRecordset(strWhere, dbOpenSnapshot)
With rst
Set fldText = .Fields(strValueField)
Do While Not .EOF
strValues = strValues & fldText & strSeparator
.MoveNext
Loop
End With
If strValues “” Then
strValues = Left(strValues, Len(strValues) – 1)
End If
Set fldText = Nothing
rst.Close
Set rst = Nothing
Set dbs = Nothing
BuildValuesList = strValues
End Function
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
End of support for Windows 10
by
Old enough to know better
11 minutes ago -
What goes on inside an LLM
by
Michael Covington
2 hours, 39 minutes ago -
The risk of remote access
by
Susan Bradley
4 hours, 11 minutes ago -
The cruelest month for many Office users
by
Peter Deegan
1 hour, 5 minutes ago -
Tracking protection and trade-offs in Edge
by
Mary Branscombe
4 hours, 13 minutes ago -
Supreme Court grants DOGE access to confidential Social Security records
by
Alex5723
4 hours, 14 minutes ago -
EaseUS Partition Master free 19.6
by
Alex5723
5 hours, 13 minutes ago -
Microsoft : Edge is better than Chrome
by
Alex5723
17 hours, 31 minutes ago -
The EU launched DNS4EU
by
Alex5723
1 day, 6 hours ago -
Cell Phone vs. Traditional Touchtone Phone over POTS
by
280park
20 hours, 33 minutes ago -
Lost access to all my networked drives (shares) listed in My Computer
by
lwerman
1 day, 11 hours ago -
Set default size for pasted photo to word
by
Cyn
1 day, 17 hours ago -
Dedoimedo tries 24H2…
by
Cybertooth
1 day, 5 hours ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
2 days, 16 hours ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
9 hours, 26 minutes ago -
Small desktops
by
Susan Bradley
8 hours, 32 minutes ago -
Totally disable Bitlocker
by
CWBillow
1 day, 10 hours ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
2 days, 14 hours ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
3 days, 20 hours ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
1 day, 15 hours ago -
Mystical Desktop
by
CWBillow
3 days, 23 hours ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
3 days, 5 hours ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
16 hours, 30 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
4 days, 15 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
4 days, 17 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
4 days, 16 hours ago -
What is wrong with simple approach?
by
WSSpoke36
2 days, 14 hours ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
5 days, 3 hours ago -
Location, location, location
by
Susan Bradley
3 days, 17 hours ago -
Cannot get a task to run a restore point
by
CWBillow
5 days, 4 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.