Hi.
I have a report that has a child report in it. I want to calculate a percentage from the main and child report. Perhaps I just don't know the syntext.
Does anyone know how this can be accomplished?
Thanks in advance.
Hi.
I have a report that has a child report in it. I want to calculate a percentage from the main and child report. Perhaps I just don't know the syntext.
Does anyone know how this can be accomplished?
Thanks in advance.
Where do you want the calculation? If in the detail of the Parent, create a text box for the calculation and in the On Print event of the details properties add the code:
Me.txtCalculation = [Reports]![YourParentReportName]![YourChildREportName].Report.[YourChildFieldName] / Me.txtFieldName
Thanks! It worked! Awesome!![]()
You are welcome! Glad I could help!