Hello, I think this is easy for experts. As you know, in some tables there is the "No. Printed" field that indicates the times that is printed in a given report. But I've noticed that, on first time it shows 0, when logic it should indicate 1. I know I can use "init value":1 on field, but I want to do that on a concrete report. I want it shows 1, instead of 0, and from there it will automatically adding. I've Attain 3.70. How can do that?.
Thanks in advance.
0
Comments
KCP Consultores
Thanks for help.
If yes, it is ok, because the counter was incremented after the value was read for your report to print it out. You need to inkrement the counter before the value is read or you need to add 1 on the output.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
"No. Printed" + 1
I am assuming it is updating correctly, so after printing if you look at the order, the No. Printed after the first printing is 1.
KCP Consultores
That's ok; sorry, I had to have said it was printed. Has indeed been as easy as putting "No. printed":=+1 as you said.
Thanks everybody for your help and time.