When I retrieve data from Excel into a notes document, Notes crashes “NSD is running…”. This has been running without error in release 5 and previous. Now - only in r6 and above we encounter this problem.
When I change the datatype in the spreadsheet to number instead of currency, the import works fine. I really don’t want to re-deploy this spreadsheet. Any suggestions?
set excel = createobject(“Excel.Application”)
Excel.visible = false
excel.workbooks.open xlFileName
Set xlWorkbook = Excel.ActiveWorkbook
set xlSheet = xlWorkbook.ActiveSheet
…
NewDoc.Purpose = .range(“Purpose”).value (this works fine)
NewDoc.Cost1 = .range(“Cost1”).value (this crashes Notes when Cost1 in excel is currency data type)