I've used SSMA to migrate my access backend to SQL Server 2014. I've updated all my forms, queries and reports to work with SQL. I knew from the beginning that the datetime was showing up wrong in all of the forms (my users only wish to store date, not date AND time) and I assumed I'd easily be able to address the issue later on from the Access FE.
Now that I'm reaching the end of the project I haven't been able to find an easy way to convert the fields in the forms and reports to only show the date instead of the date AND time as its stored in SQL.
One thing I've tried that works, at least with a few reports that are based on SQL views (which I have in access as a linked table) is modify the view to convert the date e.g. convert(varchar,StartDate,101) as StartDate
Is there anyway to easily convert the DateTime (yyyy-mm-dd hh:mm:ss) fields from SQL to show up in access as just Date (mm/dd/yyyy)?
cast(StartDate as date)in the view?format("2016-12-09 08:40:20", "yyyy-mm-dd")