Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm looking to change my "start" date to be in a text format so "mmm-yyyy". I only need the min of the start date. I was trying -
Min(month(Date#(Start, 'mmm-yyyy')))
but it's not working, ideas?
Kev
Hi,
Try lilke
Min(month(Date#(Start, 'MMM-YYYY')))
Regards
Try like month(Date#('Nov-2014', 'MMM-YYYY')) or Date(Date#('Nov-2014', 'MMM-YYYY'), 'MMM')
MonthName(min(Date))
Thanks
hi,
try this one
=Date(max([Date_FKDAT]),'MMM-YYYY')