june, i took out the format but its still extremely slow to process. im assuming its taking long because it has to create the subquery in the column. Would it be faster if i just created the sub query on my own and then create another query with the subquery+original query? This is the query that is currently being ran in the "Count" function of my original query:
Count: (SELECT Count(AMR_AIS_Num) + 1 AS RowNum FROM
qry_select_only_missingdata_or_unabletoconnect_by_ group As Dupe WHERE Dupe.AMR_AIS_Num<
qry_select_only_missingdata_or_unabletoconnect_by_ group.AMR_AIS_Num)
If i create a query that will do:
(SELECT Count(AMR_AIS_Num) + 1 AS RowNum FROM
qry_select_only_missingdata_or_unabletoconnect_by_ group As Dupe
and then a separate query that does:
WHERE Dupe.AMR_AIS_Num<
qry_select_only_missingdata_or_unabletoconnect_by_ group.AMR_AIS_Num)
and then joining the result of THAT query with my original query, do you think that will speed things up? Let me know, thanks!!