I can't set a date from a form textbox in to make table query
I use this: FECHA_INI: [Forms]![VALIDAR PANEL]![Text3]
But when i run the query in the new table the column FECHA_INI looks empty, and i have a date in my form [Text3]
I can't set a date from a form textbox in to make table query
I use this: FECHA_INI: [Forms]![VALIDAR PANEL]![Text3]
But when i run the query in the new table the column FECHA_INI looks empty, and i have a date in my form [Text3]
Have you hit Enter or Tab after entering the date to commit the value?
On the basis you are expecting a date are you sure Text3 is the name of the control next to the label Fecha Inicial and not the one above the actualizar bom button? You would be well advised to give your controls a relevant name - would also help us to help you
It is also likely the field in the new table will be text and not datetime - is this what you require?
Perhaps try wrapping the form reference in the CDate() function?
Woohoo!!! Done!! You rock!!! Thanks!!!
One more thing, they are two more columns still on binary format and I need one as a number and other as a text format, do you know some function to change the format of those?
CStr() for text, several others for various numeric data types: CLng(), CDbl(), etc.