Well, thank you for your reply. I've found a way how to select and insert into values from vba array.
Now I want to add pseudo column on select query which counts lines/rows. so that 1,2,3,4,5....
If it's impossible for access, I can use for loop in vba. But in this case, how to insert these values into pseudo column?
I have this code generated by vba.
SELECT *,  count(Number) as C
FROM Population
WHERE Number in (335, 365, 764, 859)
ORDER BY value_a DESC;