@J_Horna With the previous versions of the API there was an option to download the result as an excel from FOTT tool but with the current version of FR studio excel is one of the input formats of document type that is supported and the option to download the result as excel is not available. I think you should be able to process the result to get the table data line by line using this snippet from the examples and then write the same to a dictionary and load them as CSV file.
for region in table.bounding_regions:
print(
"Table # {} location on page: {}".format(
table_idx,
region.page_number,
)
)
lines.extend(get_lines(table.spans, get_page(region.page_number, result.pages)))
print("Found # {} lines in the table".format(len(lines)))
for line in lines:
print(
"...Line '{}' is within bounding polygon: '{}'".format(
line.content,
line.polygon,
)
)
The complete example, should help you determine the logic to get each line and then create the excel or CSV equivalent.