c# - Formatting of detail section in SAP Crystal Report -
i using sap crystal report in wpf , want formatting (bold, color) of detail section’s last record of every group.
is possible, please help.
use snippet in formatting formulas.
onlastrecord //if last record in report next() not work or next({table.group_field}) <> {table.group_field} //the next record starts new group
for example, if wanted change last detail section's background color yellow in each group, use formatting formula:
if (onlastrecord or next({table.group_field}) <> {table.group_field}) cryellow else crnocolor
Comments
Post a Comment