Hi, thanks in advace,
I have a simple access query showing last and first name with a simple where clause status and sex (Gender), this is not my table, I would like to show the number for each record. Not the Record Number but the number in the Querey.
an example would be Smith, Paul 1
Smith, Zeek 2
Zook, Able 3
etc.
this is just a number to display with the data from the query and nothing that has to be saved.
SELECT Trim([Last name]) & ", " & Trim([first name]) AS EmpName
FROM Personal
WHERE (((Personal.Status)<>"T") AND ((Personal.Sex)=[Forms]![frmEEO2]![intSex]))
ORDER BY Trim([Last name]) & ", " & Trim([first name]);
Thanks
Jim Garry
I have a simple access query showing last and first name with a simple where clause status and sex (Gender), this is not my table, I would like to show the number for each record. Not the Record Number but the number in the Querey.
an example would be Smith, Paul 1
Smith, Zeek 2
Zook, Able 3
etc.
this is just a number to display with the data from the query and nothing that has to be saved.
SELECT Trim([Last name]) & ", " & Trim([first name]) AS EmpName
FROM Personal
WHERE (((Personal.Status)<>"T") AND ((Personal.Sex)=[Forms]![frmEEO2]![intSex]))
ORDER BY Trim([Last name]) & ", " & Trim([first name]);
Thanks
Jim Garry