The table ExtendedPrice expects the following:
Code:
INSERT INTO [AspDotNetStorefront].[dbo].[ExtendedPrice]
([ExtendedPriceGUID]
,[VariantID]
,[CustomerLevelID]
,[Price]
,[ExtensionData]
,[CreatedOn])
VALUES
(<ExtendedPriceGUID, uniqueidentifier,>
,<VariantID, int,>
,<CustomerLevelID, int,>
,<Price, money,>
,<ExtensionData, ntext,>
,<CreatedOn, datetime,>)
All columns have to have something except ExtensionData which can be NULL or blank. CreatedOn defaults to GETDATE() ie now, CustomerLevelID defaults to 0 and ExtendedPriceGUID defaults to NEWID(). It's not interested in ProductID.
So you'll need this in your spreadsheet:
Code:
="INSERT INTO ExtendedPrice VALUES (NEWID()," & B2 & ",0," & C2 & ",NULL,GETDATE())"
This is for v8.0.1.2 db. Not tried or tested. I urge you to try this in a test db first.