Display The last digit of a year

K

Kevbro7189

I have a table with a Date/Time field in it. I use this table to fill out a
form on which I use that date. On the same form I need to enter in a block
the last digit of the year which is in the Date/Time field.
Example;

Field = Jan 01, 2008 13:53
I would want a Text Box to display 8
 
B

Brendan Reynolds

Kevbro7189 said:
I have a table with a Date/Time field in it. I use this table to fill out
a
form on which I use that date. On the same form I need to enter in a
block
the last digit of the year which is in the Date/Time field.
Example;

Field = Jan 01, 2008 13:53
I would want a Text Box to display 8


=Right$(Year([Acquired Date]),1)

Replace "Acquired Date" with the name of your Date/Time field.
 
K

Kevbro7189

Thank you. it works!!!!

Brendan Reynolds said:
Kevbro7189 said:
I have a table with a Date/Time field in it. I use this table to fill out
a
form on which I use that date. On the same form I need to enter in a
block
the last digit of the year which is in the Date/Time field.
Example;

Field = Jan 01, 2008 13:53
I would want a Text Box to display 8


=Right$(Year([Acquired Date]),1)

Replace "Acquired Date" with the name of your Date/Time field.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top