yea I didn't know anything about normalization and I guess I am learning the hard way

hopefully, I will make proper tables in my next database application though.
anyways, so the reporting code works fine. Weekly/quarterly/year to date data works as well.
two things though: how do I get the daily data interms of
DATE - I know I can get "day of the year", but can I somehow get date to appear in the report?
If I can get the date to show, then how should I select "starting data" from the main form. right now I have a text box, which I use for entering week numbers, quarter numbers or year and it gives me the filtered results - but I adding date to the text box doesn't result anything.
i am using forms!main!txt as the criteria for the =datepart(getinterval(), [dte], 7, 3) column in the query.
in other words, this is what I am lookign for:
if case "weekly", then ask for the week number - but if case "quarters", then show all all quarters. If case "daily" then look for the date you want to see data for
thanks!!