I know it's a bit lengthy simply to reconstruct it, but you could create a VIEW from the table, adding this derived field, if you need to run reports or queries often.
thank you but none of the examples are working, since the access does not understand the function you gave to me (convert and substring)
i made myself
Left(READ_DT,4) AS [Year],
Mid(READ_DT,5,2) AS [Month],
Mid(READ_DT),7,2) AS [Day],
[Month] & "/" & [Day] & "/" & [Year] AS ReadDate
but i am not sure if its a real date
Microsoft Access
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
Open in new window
I know it's a bit lengthy simply to reconstruct it, but you could create a VIEW from the table, adding this derived field, if you need to run reports or queries often.