cell_render_hook => sub { my ($page, $row, $col, $is_first_row, $x, $y, $w, $h) = @_; if (( $col == 0) && (!$is_first_row) ) { # ...instead of this (which doesn't work) # if (( $col == 0) && ($row >= 1) ) { my $t = $row-1; ... #### if (ref $arg{cell_render_hook} eq 'CODE') { $arg{cell_render_hook}->( $page, $row_cnt, $j, $first_row, $cur_x, $cur_y-$row_h, $calc_column_widths->[$j], $row_h ); }