Crosstab Query Formatting (1 Viewer)

lenevaosgmar

New member
Local time
Today, 16:05
Joined
Feb 24, 2018
Messages
2
I'm new to queries within Access and could use some insight. I'm trying to get the datasheet view to display an "X" instead of repeating the column titles. Any help would be appreciated. Thanks in advance.

TRANSFORM [SOPList].[SOPTitle]
SELECT [Job Titles].Title
FROM [Job Titles] INNER JOIN (JobTitle_Curriculum INNER JOIN (SOPList INNER JOIN Curriculum ON SOPList.SOPID = Curriculum.SOPID) ON JobTitle_Curriculum.ProgramID = Curriculum.TrainingProgramID) ON [Job Titles].TitleID = JobTitle_Curriculum.TitleID
GROUP BY [Job Titles].Title
PIVOT SOPList.SOPTitle;
 

Pat Hartman

Super Moderator
Staff member
Local time
Today, 17:05
Joined
Feb 19, 2002
Messages
43,257
A picture would help. Show what you have and then show what you want.
 

CJ_London

Super Moderator
Staff member
Local time
Today, 22:05
Joined
Feb 19, 2013
Messages
16,607
Like Pat, struggling to understand what you are trying to achieve, but the way to get an X in the data area is this

TRANSFORM First("X")
 

Users who are viewing this thread

Top Bottom