|
Question : Lotus
|
|
@dbcolumn with excel dsn
|
Answer : Lotus
|
|
If the question was, how to retrieve column from Excel spreadsheet to Notes, using @DbColumn, then the simplest answer is:
@DbColumn( "ODBC"; "MyExcelODBCDataSource" ; "" ; "" ; "RangeName" ; "columnName" )
MyExcelODBCDataSource = Excel data source, defined in Data Sources (ODBC) "";"" - username and password, not needed for typical spreadsheet RangeName- range name, defined in Excel, that contains needed values. Required. columnName- content of first not-empty cell in range. Required.
|
|
|
|