On using import excel to database smart service getting this error : Incorrect integer value: '' for column `Appian`.`tablename`.`palletqtyno` at row 1???

I am trying to use import excel to database smart service for importing my data from excel into appian table.

In my CDT i have columns of text and integer type. But when trying to use the excel file with integer column as blank it is throwing me error as:

Incorrect integer value: '' for column `Appian`.`testBT`.`palletqtyno` at row 1???

where testBt is my tablename and palletqtyno is my column name whose data type is defined as integer in CDT

  Discussion posts and replies are publicly visible

Parents Reply
  • Working with Excel import/export can be a little finicky at times, especially related to data types.  I am not that familiar with this node - typically I will utilize fn!readexcelsheet() to import raw data, then cast it to a CDT, then write the CDT to the database with Write to Datastore Entity.  This allows you to avoid some of these issues with going straight to the DB and perform any manipulations, casting, etc in between as needed.

Children