in reply to Converting output from numeric values to text
if ( $Month eq 'Jan' ) { $Month = 0; } [download]
PS: this is my "most typical goof", so I caught it easily :)
UPDATE: doh! if ( $Month == 0 ) { $Month = 'Jan'; } ....nevermind