I have a report with a header group band. I need to calculate a formula before printing the header group bando. What is the exact point of embed code for do it?
You could Create a seperate band, use a filter on it so that it doesn't print auto and then issue the print statement for this band yourself at "Before Printing Detail Section". Also use a var to make sure you only print it once for a break
Example :
If LastBreakValue <> CurrentBreakValue
LastBreakValue = CurrentBreakValue
Print(RPT:MyHeaderBand)
End
where CurrentBreakValue is the var you use for your break.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.