I have a perl script which uses Excel-Writer-XLSX 0.88. I got a problem when i want to use conditional_formatting function. The message that appers is: "Can't locate object method 'conditional_formatting' via package 'Excel::Writer::XLSX::Worksheet'.
That is the code that i use:
$worksheet1->conditional_formatting(0, 0, $n-1, 7,
{
type => 'formula',
criteria => '=$E1=$G1',
format => $format1
}
);
Need help :)