Hello, I am not too sure if this is what you want (most likely it isn't...) but I'll give this a shot anyhows.
From what it sounds like, you want to display the results of a query in the the order of which VendorNumber your form is currently on, and then, move onto the end (and then back to the start).
I've managed to somewhat work out how to get the query to give you 14, 16, 17), but not too sure how to return it back to 1, 2.
Anyway, what I did was created a macro (found under Objects). First in action; add "OpenQuery" and place your 'query name'. The 2nd action is then to "ApplyFilter" where the condition is [query name]![VendorNumber]>=[Forms]![form name]![VendorNumber]
So, when you create a button on your form to run the macro, it should be able to detect what the current VendorNumber is, and the query will show you the results from that number and onwards (so 14, 16 and 17 in this case).
I guess if you make a 2nd macro with [query name]![VendorNumber]<[Forms]![form name]![VendorNumber] as the WHERE condition, it will be able to bring up 1 and 2... The downside to this method is that you will not be able to view both versions of the same query.
Hope that helps and makes sense.