ms access - Return a "mmm-yy" value from an acecss query -
i writing query need return set of data, 1 of needs date in format mmm-yy.
i using format(datevalue([cccontactdate]),"mmm-yy") shows in excel apr-17 value in cell still 02/04/2017 , need report month , year.
is there way amend query return apr-17?
use monthname(month(ccdate)) & "-" & year(ccdate)
Comments
Post a Comment