in reply to Re: Color highlighting in Excel
in thread Color highlighting in Excel

Or, using Excel::Template
<workbook> <worksheet> <loop name="data"> <row> <if name="highlight_this"> <format bgcolor="purple"> <cell><var name="something" /></cell> </format> </if> <if name="highlight_this" is="false"> <cell><var name="something" /></cell> </if> </row> </loop> </worksheet> </workbook>

My criteria for good software:
  1. Does it work?
  2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?