mentairia Posted September 16, 2005 Posted September 16, 2005 I have MOnth in name format and year in number format. I need it to create a date field for sorting purposes. I tried several different methods none have worked is there a way to get "January" "2005" to read 01/01/2005. Day is not important month and year is all I care about. Thanks Tony D.
aaa Posted September 16, 2005 Posted September 16, 2005 By calculation - on of ways: B=Case(A="January 2005","01/01/2005", ..................... .................... .................... )
mentairia Posted September 16, 2005 Author Posted September 16, 2005 What do the dotted lines represent? Do I have to give it all varibles!
aaa Posted September 16, 2005 Posted September 16, 2005 (edited) Look attachment! Only 12 choice may be: January 2005 February 2005 March 2005 .... ..... If you want post the part of your data. Date.zip Edited September 16, 2005 by Guest
comment Posted September 16, 2005 Posted September 16, 2005 Try: Date ( Div ( Position ( "janfebmaraprmayjunjulaugsepoctnovdec" ; Left ( monthNameField ; 3 ) ; 1 ; 1 ) ; 3 ) + 1 ; 1 ; yearField )
Recommended Posts
This topic is 7011 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now