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 out of 0 found this helpful
Comments
2 comments
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
Please sign in to leave a comment.