on 2023 Dec 13 10:12 AM
Hi All,
I have a custom invoice layout that I have created and without the stored procedure TmSp_DocLineTypeLayout;1 and used INV10 instead, and added text lines on details b. I managed to get the visual order right but unable to create a line num that works for details a and b. How do I create a linenum that works for both details section.
Kind Regards,
Request clarification before answering.
I would create a formula like this:
NumberVar rowNum;
If OnFirstRecord or {Invoice Number Field} <> Previous({Invoice Number Field}) then
rowNum := 0;
rowNum := rowNum + 1;
Right('000' + toText(rowNum, 0, ''), 3)
Put the formula in each of the details sections where you want to display the row number.
-Dell
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
62 | |
7 | |
6 | |
6 | |
6 | |
5 | |
4 | |
4 | |
4 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.