I am trying to reference a report textbox contained in a Group Footer Section. The Value of this control is a Sum expression like this
= Sum(Fields.ABC). I am trying to reference the calculated value of this control (named txtSumV48) like this
If txtSumv48.Value > 0 Then
do something spectacular
end if
I am using the Group Footer Section's ItemDataBound event to place this code.
I have tried a number of different approaches to get the calculated value but no luck. It keeps coming up with the value "= Sum.... " and it lets me know this cannot be converted to a double or single or whatever data type conversion function I tried. I am thinking that the report processing cycle is biting me. First headers, then detail, then footers. Any ideas on how to accomplish this, plus illumination/education on this will be most appreciated. Thanks in advance
= Sum(Fields.ABC). I am trying to reference the calculated value of this control (named txtSumV48) like this
If txtSumv48.Value > 0 Then
do something spectacular
end if
I am using the Group Footer Section's ItemDataBound event to place this code.
I have tried a number of different approaches to get the calculated value but no luck. It keeps coming up with the value "= Sum.... " and it lets me know this cannot be converted to a double or single or whatever data type conversion function I tried. I am thinking that the report processing cycle is biting me. First headers, then detail, then footers. Any ideas on how to accomplish this, plus illumination/education on this will be most appreciated. Thanks in advance