CT,
We will try to fix this bug in our next deployment. However, I don't think that this issue can be fixed in a few days. In the mean time, could you try the following workaround (2 steps) first:
1) Upload your Excel file into a *new* table (say, named "NoIdentity") via the "Data Transfer". Accept default settings and it will create a column named "ID".
2) Connect to SQL Azure portal (or use the SQL management studio), execute the following SQL query:
INSERT INTO [Items] (col1, col2, col3, ...)
SELECT col1, col2, col3, ... FROM [NoIdentity]
This will insert all data in the "newly-created" temporary table "NoIdentity" into the existing table "Items".
Here, "col*" is the name of the columns. Please don't include the identity column "ID" in the list of columns, since SQL server will automatically generate the value of the identity column.
3) Delete the table "NotIdentity"
We understand that this is a bit inconvenience. But I hope that you can try this workaround in the mean time.
Thanks,
Ming.
Data Transfer team, Microsoft.
Pak-Ming Cheung - MSFT