I am trying to create a style that makes dates from the last week in bold. I have only been able to get it to work by putting in an explicit date like below. I would like to have a dynamic "last week" based on the current date.
<style name="Date_Bold" isBold="false">
<conditionalStyle>
<conditionExpression><![CDATA[$F{$F{account_date}.toString() > '2011-10-17 00:00:00']]></conditionExpression>
<style isBold="true"/>
</conditionalStyle>
</style>