Is there a way to convert the top table in the image to the one on the bottom. Crosstab says you need more than 2 columns when I try to use that method.
I don’t necessarily need it in a table if I can just display it in a query.
![]() |
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 |
-
Crosstab or not to crosstab (A2K)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Crosstab or not to crosstab (A2K)
- This topic has 10 replies, 4 voices, and was last updated 21 years, 4 months ago.
AuthorTopicWSready4data
AskWoody LoungerDecember 19, 2003 at 1:33 pm #398208Viewing 5 reply threadsAuthorReplies-
WSHansV
AskWoody LoungerDecember 19, 2003 at 1:43 pm #759553The bottom image doesn’t correspond to something meaningful in Access. Queries have rows and columns (just like tables); a single row in a query represents data that belong together. The data in a row in your bottom image have nothing to do with each other. It might be possible to obtain it as a result of an extremely artificial method, but I don’t know how to do that at the moment.
-
WSHansV
AskWoody LoungerDecember 19, 2003 at 1:43 pm #759554The bottom image doesn’t correspond to something meaningful in Access. Queries have rows and columns (just like tables); a single row in a query represents data that belong together. The data in a row in your bottom image have nothing to do with each other. It might be possible to obtain it as a result of an extremely artificial method, but I don’t know how to do that at the moment.
-
WSJudyJones
AskWoody LoungerDecember 19, 2003 at 2:36 pm #759563You could force display of the data in the method you want if you had a separate query for each category and built a report for each query displaying only the models pertaining to that category. Next create a report containing each of the category reports as a subreport placing them side by side and inserting the title of each category above each subreport..
-
WSready4data
AskWoody Lounger -
WSready4data
AskWoody Lounger
-
WSJudyJones
AskWoody LoungerDecember 19, 2003 at 2:36 pm #759564You could force display of the data in the method you want if you had a separate query for each category and built a report for each query displaying only the models pertaining to that category. Next create a report containing each of the category reports as a subreport placing them side by side and inserting the title of each category above each subreport..
WSJDN
AskWoody LoungerDecember 19, 2003 at 7:45 pm #759695My solution:
A query to sort the data by category, model and add a “Sort order” field,
SELECT Test.Category, Test.Model, 1 AS [Sort Order] INTO [Test 2]
FROM Test
GROUP BY Test.Category, Test.Model, 1
ORDER BY Test.Category, Test.Model;A macro to create sort orders by category:
Function Index_test_2()
Dim db As Database
Dim rs As Recordset
Dim count_it As Integer
Dim Current_Category As StringCurrent_Category = “”
Set db = CurrentDb
Set rs = db.OpenRecordset(“Test 2”)If rs.recordcount > 0 Then
rs.MoveFirst
While Not rs.EOF
If Current_Category rs![Category] Then
count_it = 0
Current_Category = rs![Category]
End If
count_it = count_it + 1
rs.Edit
rs![Sort Order] = count_it
rs.Update
rs.MoveNext
Wend
End IfEnd Function
Then crosstab the result on the sort order:
TRANSFORM Max([Test 2].Model) AS [The Value]
SELECT [Test 2].[Sort Order]
FROM [Test 2]
GROUP BY [Test 2].[Sort Order]
PIVOT [Test 2].Category;Not perfect, but it works. This is Access97 code and queries.
-
WSready4data
AskWoody Lounger -
WSready4data
AskWoody Lounger
WSJDN
AskWoody LoungerDecember 19, 2003 at 7:45 pm #759696My solution:
A query to sort the data by category, model and add a “Sort order” field,
SELECT Test.Category, Test.Model, 1 AS [Sort Order] INTO [Test 2]
FROM Test
GROUP BY Test.Category, Test.Model, 1
ORDER BY Test.Category, Test.Model;A macro to create sort orders by category:
Function Index_test_2()
Dim db As Database
Dim rs As Recordset
Dim count_it As Integer
Dim Current_Category As StringCurrent_Category = “”
Set db = CurrentDb
Set rs = db.OpenRecordset(“Test 2”)If rs.recordcount > 0 Then
rs.MoveFirst
While Not rs.EOF
If Current_Category rs![Category] Then
count_it = 0
Current_Category = rs![Category]
End If
count_it = count_it + 1
rs.Edit
rs![Sort Order] = count_it
rs.Update
rs.MoveNext
Wend
End IfEnd Function
Then crosstab the result on the sort order:
TRANSFORM Max([Test 2].Model) AS [The Value]
SELECT [Test 2].[Sort Order]
FROM [Test 2]
GROUP BY [Test 2].[Sort Order]
PIVOT [Test 2].Category;Not perfect, but it works. This is Access97 code and queries.
Viewing 5 reply threads -

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
-
Mozilla Firefox Security Updates! Released late 17th May 2025
by
Alex5723
4 hours, 2 minutes ago -
Microsoft: Troubleshoot problems updating Windows
by
Alex5723
55 minutes ago -
Woman Files for Divorce After ChatGPT “Reads” Husband’s Coffee Cup
by
Alex5723
8 hours ago -
Moving fwd, Win 11 Pro,, which is best? Lenovo refurb
by
Deo
1 hour, 27 minutes ago -
DBOS Advanced Network Analysis
by
Kathy Stevens
17 hours, 50 minutes ago -
Microsoft Edge Launching Automatically?
by
healeyinpa
8 hours, 15 minutes ago -
Google Chrome to block admin-level browser launches for better security
by
Alex5723
20 hours, 30 minutes ago -
iPhone SE2 Stolen Device Protection
by
Rick Corbett
12 hours, 46 minutes ago -
Some advice for managing my wireless internet gateway
by
LHiggins
8 hours, 27 minutes ago -
NO POWER IN KEYBOARD OR MOUSE
by
HE48AEEXX77WEN4Edbtm
14 hours, 42 minutes ago -
A CVE-MITRE-CISA-CNA Extravaganza
by
Nibbled To Death By Ducks
1 day, 6 hours ago -
Sometimes I wonder about these bots
by
Susan Bradley
1 day, 2 hours ago -
Does windows update component store “self heal”?
by
Mike Cross
16 hours, 20 minutes ago -
Windows 11 Insider Preview build 27858 released to Canary
by
joep517
1 day, 19 hours ago -
Pwn2Own Berlin 2025: Day One Results
by
Alex5723
3 hours, 54 minutes ago -
Windows 10 might repeatedly display the BitLocker recovery screen at startup
by
Susan Bradley
7 hours, 35 minutes ago -
Windows 11 Insider Preview Build 22631.5409 (23H2) released to Release Preview
by
joep517
1 day, 22 hours ago -
Windows 10 Build 19045.5912 (22H2) to Release Preview Channel
by
joep517
1 day, 22 hours ago -
Kevin Beaumont on Microsoft Recall
by
Susan Bradley
1 day, 11 hours ago -
The Surface Laptop Studio 2 is no longer being manufactured
by
Alex5723
2 days, 6 hours ago -
0Patch, where to begin
by
cassel23
2 days ago -
CFPB Quietly Kills Rule to Shield Americans From Data Brokers
by
Alex5723
2 days, 20 hours ago -
89 million Steam account details just got leaked,
by
Alex5723
2 days, 8 hours ago -
KB5058405: Linux – Windows dual boot SBAT bug, resolved with May 2025 update
by
Alex5723
3 days, 4 hours ago -
A Validation (were one needed) of Prudent Patching
by
Nibbled To Death By Ducks
2 days, 19 hours ago -
Master Patch Listing for May 13, 2025
by
Susan Bradley
2 days, 7 hours ago -
Installer program can’t read my registry
by
Peobody
31 minutes ago -
How to keep Outlook (new) in off position for Windows 11
by
EspressoWillie
2 days, 17 hours ago -
Intel : CVE-2024-45332, CVE-2024-43420, CVE-2025-20623
by
Alex5723
3 days, 1 hour ago -
False error message from eMClient
by
WSSebastian42
3 days, 16 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.