My report does a lot of complex calculations and at the end there is a 'Total' formula.
I want to be able to read that value FROM the report in VB.NET after the report has been printed and use it for another function.
Is this possible?
The closest I've got is this:
rpt.DataDefinition.FormulaFields("Total").Text
but this gives me the text from the formula and not its calculated value...
Any ideas?
Thanks in advance
I want to be able to read that value FROM the report in VB.NET after the report has been printed and use it for another function.
Is this possible?
The closest I've got is this:
rpt.DataDefinition.FormulaFields("Total").Text
but this gives me the text from the formula and not its calculated value...
Any ideas?
Thanks in advance