Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I've working with PixelPerfect with multi level. I need the sequence number to run through every table rows and continue counting when the level changed. I've try for all summary option in summary running Page is closer my expectation but I need to countinue counting till the page end. for the other It's reset to 1 when level change.
Hi,
int counter = 0;
private void label4_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) {
counter++;
label4.Text = counter.ToString();
}
This is a C# script so be sure it is selected ad template scripting language and that the scripts are enabled. Chenge the name of the label with the correct value. In my case the name is label4.
Best Regards,
Ruggero
Hi,
Are they two different levels (different fields) or two different values of the same level?
I have to check if it is possible.
Best Regards,
Ruggero
Hi,
There is 1 Table but grouping by the dimension value in level (same field).
ie. I have a table of customer and the branch name is the level
----------------------------------------------
Branch1 : A
--------------------table of customer ---
seq. Customer Name
1 CustomerA
2 CustomerB
----------------------------------------------
Branch2 : B
--------------------table of customer ---
seq. Customer Name
3 CustomerC << Normally it reset to 1 but I need concurrent counting
4 CustomerD
----------------------------------------------
Hi,
int counter = 0;
private void label4_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) {
counter++;
label4.Text = counter.ToString();
}
This is a C# script so be sure it is selected ad template scripting language and that the scripts are enabled. Chenge the name of the label with the correct value. In my case the name is label4.
Best Regards,
Ruggero