No disrespect intended, but typing in all caps is considered "SHOUTING", and
is rude.
I NEED TO FILL A COLUMN WITH EVERY DATE ASCENDING. HOW DO I DO THAT
WITHOUT
HAVING TO TYPE ALL OF THEM?
I'm assuming that you mean that you do not want to type the dates. If it is
OK to have your date column represent the current date, you can do this:
1. Open your table in design view
2. Goto your date column
3. Make sure its data type is Date / Time
4. Click the Default Value property down below
5. type: = Date()
6. Save your table
Then, when you enter records either in the datasheet view of the table or in
a form with databound controls, today's date will be the default value in
the field. In case you're interested, in step 5 above, using Now() instead
of Date() will get you the full date and time also.