Problem with date in user form

I

Ivo_69

Hello,
I create user form for database that contain dates in one column.
But when I fill user form it copy the date in the database column like text
and the formulas related to this cells dosen't work.The cells in the column
are formated like dates.
How to solve this problem?

Ivo
 
B

Bernie Deitrick

Ivo,

Use DateValue to convert the text to a date, like:

DataBaseCell.Value = DateValue(me.TextBox1.Text)

HTH,
Bernie
MS Excel MVP
 
S

Simon Lloyd

Ivo_69;392161 said:
Hello,
I create user form for database that contain dates in one column.
But when I fill user form it copy the date in the database column like
text
and the formulas related to this cells dosen't work.The cells in the
column
are formated like dates.
How to solve this problem?

Ivoif you are filling the userformusing add item then

Code:
--------------------

ComboBox1.AddItem Format(Date, "DD/MM/YYYY")
--------------------
really we need some more information off you, like what are you
filling?, how are you filling it?


--
Simon Lloyd

Regards,
Simon Lloyd
'The Code Cage' (http://www.thecodecage.com)
 

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