Copy link to clipboard
Copied
Hi All,
My request is to change the table formatting options
from "TableFormattingOptions.EXCEL_UNFORMATTED_TABBED_TEXT"
to "TableFormattingOptions.EXCEL_FORMATTED_TABLE"
Screenshot for your more clarifications,
To:
Trying code is below:
alert( app.excelImportPreferences.tableFormatting)
if((app.excelImportPreferences.tableFormatting == TableFormattingOptions.EXCEL_UNFORMATTED_TABLE) || (app.excelImportPreferences.tableFormatting == TableFormattingOptions.EXCEL_UNFORMATTED_TABBED_TEXT) || (app.excelImportPreferences.tableFormatting == TableFormattingOptions.EXCEL_FORMAT_ONLY_ONCE))
{
app.excelImportPreferences.tableFormatting = TableFormattingOptions.EXCEL_FORMATTED_TABLE;
}
alert(app.excelImportPreferences.tableFormatting)
Regards
Siraj
Copy link to clipboard
Copied
Hi.
this works for me. (cc version9.3)
what are problems?
thank you
mg