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.

enter image description here

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

Popular posts from this blog

matlab - Deleting rows with specific rules -

image - ClassNotFoundException when add a prebuilt apk into system.img in android -