I have a table that I'm reading 1 Row and a number of columns. In the Row, there is a name and some numbers. The detected words (numbers) seem to run together in my table at times. What can I do to correct this?
It seems if I have a table with rows and columns, I should be able to create boundaries for the columns?
Hi,
When characters are close to each other it may happen that the OCR would believe 2 are part of the same number.
Recommendation would be to capture the entire row in one field and then post process to get each number.
You can perform this with "substring(RetrievedValue, 0, 1)" then substring(RetrievedValue, 1, 1) etc...