The simplest way is to simply include a date range in the WHERE Clause of your SQL String.
Code:
SELECT
[EventID],
[SellerID],
[WeeklySales]
FROM
MyTable
WHERE
[Timestamp] BETWEEN Date() AND DateAdd("w", -4, Date())
This assumes that you're storing the date in your Table, of course. If you're not, you should think about adding that in since you're at the mercy of the Table when it comes to ordering Records: Generally it's first-in, first-out, but that's not always the case (so a record you added today could appear BEFORE a Record you added yesterday).
Anyway, if you're not including the date in your Table, then you can just limit the results to the first 4 Records (or however many you need):
Code:
SELECT
TOP 4
[EventID],
[SellerID],
[WeeklySales]
FROM
MyTable