in reply to Re^3: A Warning Issue!
in thread A Warning Issue!

Yes it could be it, but how could I prevent the warning if they have no value?

Replies are listed 'Best First'.
Re^5: A Warning Issue!
by olus (Curate) on Feb 19, 2008 at 17:11 UTC

    You could break your if statement and check separately if those elements are defined.

    if(defined $_->{ TEST33 } && $_->{ TEST33 } ) { # do something with $_->{ TEST33 } # like setting pre-check vars to be used in later conditionals }