IMPORT CSV to a table view

Good day everyone,

I have a table that is using the row number as a KEY with the following columns :

Shipment Number
Shipment Status
PCS
WEIGHT
Volume

I am trying to upload a csv file that has the following columns:

_RowNumber

PCS
WEIGHT
Volume

When i choose to import , i get the following error:

ErrorDescription: Row key field ‘_RowNumber’ value is missing

Even though the ‘_RowNumber’ column is in the csv file and is not blank

I am missing something here ? any suggestions would be really appreciated

Thanks

Just don’t use that bad key or completely remove the [_RowNumber] from the CSV, you don’t need it

1 Like

Thanks for your response,

the only reason am using the row is because its a QUERY result .
and the imported csv file can go anywhere in the table (kinda difficult to explain)

ill give it a try without the row number column in the .csv

thanks