May 21, 2004 #1 ptuck MIS Joined Aug 8, 2003 Messages 130 Location US What is the best way to just pull the Month and populate a text field?
May 21, 2004 #2 shaddow Programmer Joined Mar 22, 2001 Messages 1,862 Location RO Use Month() function you can also use Year,Day functions. check this out http://www.devguru.com/Technologies/vbscript/quickref/functions.html ________ George, M Searches(faq333-4906),Carts(faq333-4911) Upvote 0 Downvote
Use Month() function you can also use Year,Day functions. check this out http://www.devguru.com/Technologies/vbscript/quickref/functions.html ________ George, M Searches(faq333-4906),Carts(faq333-4911)
May 21, 2004 Thread starter #3 ptuck MIS Joined Aug 8, 2003 Messages 130 Location US I need the actual name not the number. Is this possible? Upvote 0 Downvote
May 21, 2004 #4 shaddow Programmer Joined Mar 22, 2001 Messages 1,862 Location RO Even simpler, but you should read carefuly that link. Code: MonthName(Month(dateObject)) - full month name MonthName(Month(dateObject),true) - abreviated ________ George, M Searches(faq333-4906),Carts(faq333-4911) Upvote 0 Downvote
Even simpler, but you should read carefuly that link. Code: MonthName(Month(dateObject)) - full month name MonthName(Month(dateObject),true) - abreviated ________ George, M Searches(faq333-4906),Carts(faq333-4911)