in reply to Converting output from numeric values to text

try
if ( $Month eq 'Jan' ) { $Month = 0; }

PS: this is my "most typical goof", so I caught it easily :)

UPDATE: doh! if ( $Month == 0 ) { $Month = 'Jan'; } ....nevermind