Run Access. Open the database that contains the two groups from which you wish to calculate percentile scores.
Create a new table. Open the table editor to enter a definition using SQL.
Type "select T.myField1 AND T.myField2, (select count(*) from myTable.myField1 AND myTable.myField2 <= T.myField1 and T.myField2)*100.0 / (select count(*) from myTable) from myTable as T group by myField1 AND myField2 order by myField1 AND myField2" without the quotation marks. Replace "myField1," "myField2" and "myTable" with the name of the table and fields that contain the data you want to analyze.
Save the definition in the table editor. View the table to see the calculated percentiles from the two groups.