I'm trying to set conditional formatting for duplicate values using PHPExcel.
The class PHPExcel_Style_Conditional
exports almost all of the conditions available in Excel like OPERATOR_GREATERTHAN
, OPERATOR_LESSTHAN
etc. but I can't find anything to format duplicate values like this:
I know, I could check for duplicates myself and format them accordingly, but using Excel's own feature set for this would be much more elegant.
Does anyone know how to do this?