Thank you for this, I amended my query to include the ref in the sub query and it did exactly what I needed.
SELECT (Select Count(*)
from Full_List As H
Where H.Email_Address = Full_List.Email_Address
And H.ACCREF + H.ACCREF<= Full_list.ACCREF + Full_List.ACCREF) AS [Assign#], *
FROM Full_List...