G
Guest
I have a problem... I am trying to build a form that allows data entry "accross" the form instead of down the form
My table is structured like this
CREATE TABLE [SalesForecast]
[SKU] [int] NOT NULL
[CustomerID] [nvarchar] (15) NOT NULL
[Period] [int] NOT NULL
[Year] [int] NOT NULL
[SalespersonID] [nvarchar] (10) NOT NULL
[ForecastQty] [int] NULL DEFAULT (0)
[SalePrice] [money] NULL
But when a user enters data I want them to see something like this
Item -- Sales Person -- Customer -- January -- March -- April -- May -- June -- July -- August -- etc..
For each month I want them to fill in the ForecastQty
Any suggestions on ways to do this
thanks
Bradley
My table is structured like this
CREATE TABLE [SalesForecast]
[SKU] [int] NOT NULL
[CustomerID] [nvarchar] (15) NOT NULL
[Period] [int] NOT NULL
[Year] [int] NOT NULL
[SalespersonID] [nvarchar] (10) NOT NULL
[ForecastQty] [int] NULL DEFAULT (0)
[SalePrice] [money] NULL
But when a user enters data I want them to see something like this
Item -- Sales Person -- Customer -- January -- March -- April -- May -- June -- July -- August -- etc..
For each month I want them to fill in the ForecastQty
Any suggestions on ways to do this
thanks
Bradley