M
Mike T
I have a situation where I use a number of queries to
complete a task and I know there is a better faster way of
doing it and I'm hoping someone can help. I have a table
the is imported in where the date field is in the yyyymmdd
format and is set as a number. what I need to do is
convert it to mm/dd/yyyy. Now I do this by using this
code Mid([DATE_COMPLETE_JBMSTR],5,2) & "/" & Mid
([DATE_COMPLETE_JBMSTR],7,2) & "/" & Left
([DATE_COMPLETE_JBMSTR],4)
What I'm looking to do is create a module that either
converts it for me by changing the table format to text
then updating it with this type of code or creading a
module with would incorporate the queries that have now
that do the job. I'm very new to modules and have a basic
understanding of VBA. If you could point me in the right
direction or have some code that will do what I have
mention above that would be great. Code that shows me how
to create a module that will append data to a nother table
then delete data from a table that would help too.
TIA
Mike
complete a task and I know there is a better faster way of
doing it and I'm hoping someone can help. I have a table
the is imported in where the date field is in the yyyymmdd
format and is set as a number. what I need to do is
convert it to mm/dd/yyyy. Now I do this by using this
code Mid([DATE_COMPLETE_JBMSTR],5,2) & "/" & Mid
([DATE_COMPLETE_JBMSTR],7,2) & "/" & Left
([DATE_COMPLETE_JBMSTR],4)
What I'm looking to do is create a module that either
converts it for me by changing the table format to text
then updating it with this type of code or creading a
module with would incorporate the queries that have now
that do the job. I'm very new to modules and have a basic
understanding of VBA. If you could point me in the right
direction or have some code that will do what I have
mention above that would be great. Code that shows me how
to create a module that will append data to a nother table
then delete data from a table that would help too.
TIA
Mike