in reply to Re^4: Read Merge cell details from xls
in thread Read Merge cell details from xls

I see this code in the module source:
$sheet{merged} = [ map { $_->[0] } sort { $a->[1] cmp $b->[1] } map {[ $_, pack "NNNN", @$_ ]} map {[ map { $_ + 1 } @{$_}[1,0,3,2] ]} @{$oWkS->get_merged_areas || []}];
This seems to indicate that "merged" is a WORKSHEET attribute - would you care to investigate that ?

        ...it is unhealthy to remain near things that are in the process of blowing up.     man page for WARP, by Larry Wall

Replies are listed 'Best First'.
Re^6: Read Merge cell details from xls
by Himaja (Novice) on Sep 19, 2016 at 14:00 UTC

    Hey I am NOT able find the mentioned merged attribute in my worksheet even after reading the sheet with the following command.

    my $book = ReadData("Temp_test.xlsx",attr=>1,merge=>1);