H
Howard
I have a report based upon a cross tab query. Since I don't know how
many columns are going to be returned my detail section is 38 unbound
text boxes whose control source and horizontal position is set up on
report open using code like...
Me("text" & Format$(x)).ControlSource = "=[" & rs(x + 3).Name & "]"
Me("text" & Format$(x)).Left = ((x - 1) * DataWidth) + LeftHandDataEdge
In the footer of the report, for each column of text boxes, I want to
show the number and percentage of of them that contained "A", "B" or "C".
Putting a text box in the footer with, eg =sum([text15])as the control
source does not seem to work maybe because the text boxes are unbound.
How - and where - do I write the code to do the calculations at run time?
Howard
many columns are going to be returned my detail section is 38 unbound
text boxes whose control source and horizontal position is set up on
report open using code like...
Me("text" & Format$(x)).ControlSource = "=[" & rs(x + 3).Name & "]"
Me("text" & Format$(x)).Left = ((x - 1) * DataWidth) + LeftHandDataEdge
In the footer of the report, for each column of text boxes, I want to
show the number and percentage of of them that contained "A", "B" or "C".
Putting a text box in the footer with, eg =sum([text15])as the control
source does not seem to work maybe because the text boxes are unbound.
How - and where - do I write the code to do the calculations at run time?
Howard