in reply to Re^2: Data::Table - empty values - avoid warnings
in thread Data::Table - empty values - avoid warnings

Thanks, often it directs me to the solution as well but couldn't think of a 'generic' enough fix. I tried something like:

$t->colsMap(sub { $_->[2] = $_->[0] + $_->[1] if ( length( $_->[1] ) > 0 ) } );

but that only worked in case of blanks. Happy to have found some alternatives.
thanks again.