I have a table that I want to extract in FlexiLayout
At the end of each row, I want to add the invoice number so that it is repeated in all rows
Note that the invoice number is far from the table inside the PDF file.
I have a table that I want to extract in FlexiLayout
At the end of each row, I want to add the invoice number so that it is repeated in all rows
Note that the invoice number is far from the table inside the PDF file.
0人中0人がこの記事が役に立ったと言っています
コメント
2件のコメント
Hi Ababnoub,
You can achieve it via script in Document Definition (In Project Setup Station)
It would look something like
for (i = 0; i < Context.Field("LineItems").Items.Count; i++) {
Context.Field("LineIteminLineItems").Item[i].Text = Context.Field("LineIteminLineItems").Item[i].Text + " " + Context.Field("InvoiceNumber").Text;
}
Please note this is s sample I haven't tested. Here's where you can find more samples for the reference: https://help.abbyy.cn/en-us/flexicapture/12/standalone_administrator/scripting_rules_ex
this link you shared doesn't work.
https://help.abbyy.cn/en-us/flexicapture/12/standalone_administrator/scripting_rules_ex
サインインしてコメントを残してください。