Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date Filed

Hi all,

I have date field as 1/1/2013,MM/DD/YYYY. now i want to show it as jan-13

1 Solution

Accepted Solutions
Not applicable
Author

thry this

=monthname(date) as monthyear

hope this will helps you

View solution in original post

8 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Cast date field as Date(myDate, 'MMM-DD')

Hope it helps

Colin-Albert

use date(monthstart(myDate), 'MMM-YY')

The monthstart will make all dates in January 13 be based on the same date, if you just change the format of the Date value without monthstart, the text will show as MMM-YY but the data will hold the individual date values.

Not applicable
Author

thry this

=monthname(date) as monthyear

hope this will helps you

Not applicable
Author

Hi,

Use

Date(monthname(myDate),'MMM-YY')

HTH

-Shruti

MK_QSL
MVP
MVP

=Date(Date#('1/1/2013','MM/DD/YYYY'),'MMM-YY')

or

=Date(Date#(YourDateField,'MM/DD/YYYY'),'MMM-YY')

Not applicable
Author

Else try this

=monthname(Date(num(Date#(YourDateField,'MM/DD/YYYY')),'MM/DD/YYYY'))

ashwanin
Specialist
Specialist

=DATE(Datefield,'MMM-YY') as DateField

vipin_mishra479
Creator II
Creator II

Hi Kannuri,

try This One

 

=date(MonthName( date(Today(),'MM/DD/YYYY')),'MMM-YY')

Vipin