hey there
I am working in a crosstab report in which i want to sum the row of data. lets say for eg i have this data as my row:
this depicts how my table is. the trouble is I am not getting to compute and arrive at the value in the total column. I tried the following code but got nothing
Is there a way to get this done? there must be. Help!
I am working in a crosstab report in which i want to sum the row of data. lets say for eg i have this data as my row:
Code:
Col 1 col2 col3 total 23 10 1 34 2 12 9 23
Code:
Dim gbl As Integer Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer) gbl = Nz(Col2, 0) + Nz(Col3, 0) + Nz(Col4, 0) + Nz(Col5, 0) + Nz(Col6, 0) Col7 = glb End Sub
Comment