1 Reply
-
Hello,
well sure, you can do this via scripting:
var g_vImportFile = new __holder("");
var asFileNames = Dialogs.BrowseForFiles("", "*.xls", "", "", 0)
g_vImportFile.value = asFileNames[0];oImportExcel = Context.getExcelReader(g_vImportFile.value.getData());
oImportSheetList = oImportExcel.getSheets();
g_oSheet = oImportSheetList[1];while (g_oSheet.getCell(1 + lCount, 3) != null && g_oSheet.getCell(1 + lCount, 4) != null) {
sVal1 = g_oSheet.getCell(1 + lCount, 3).getCellValue().toString();
sVal2 = g_oSheet.getCell(1 + lCount, 4).getCellValue().toString();
lCount++;
...
}BR Robert