Date format expression in table

Y

Yecenia

I need to add credit card data in my table and I need a date field to
collect and show data as "mm"/"yy".

I have tried different approaches and none worked. Please help.

Thanks.
 
K

Klatuu

All date fields need a value for the day. Credit cards usually expire on the
last day of the month, so you coould force the day to the last day of the
month. Also, date fields are not formatted at the table level. You can use
the Format function to display them how ever you want, but the data will
still be stored as a number.
In this case, it may be better to use a text field to store the data.
 
Y

Yecenia

If I used text I will not be able to apply logic when reporting which credit
cards are due to expire.

It sounds like I will need to change the expression on the form and figure
out the formula to make the day default to the 31st.

I would not know where to begin to figure out a formula like that.

Can anyone help with this expression?
 
K

Klatuu

Here is how you can turn the text into a date.

DateSerial(Right(ExpiresOn,4),Left(ExpiresOn,2)+1,0)

Where ExipresOn is like "03/2011"
It will return the date as 3/31/2011
It is also important you validate the data entry and be sure the user is
putting it in in the format of mm/yyyy otherwise, the above code will not
work.
 
K

KARL DEWEY

Or this for the 'mm/yy' type entry --
DateSerial("20" & Right(ExpiresOn,2),Left(ExpiresOn,2)+1,0)
 

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

Similar Threads

Date format 7
Forcing date format 2
Date Format 5
ang date & east europa date 1
date format problem 5
Date Format - Credit Card Expiry 6
How to enter a date in DD-MM-YYYY format 2
Pivot Table date format 1

Top