I have a datasheet form for the following table in sql server:
CREATE Table dbo.RiskType(
ID INT IDENTITY NOT NULL,
Risk_Type varchar (50) NULL,
Sort_Order int Null)
ALTER TABLE [dbo].[RiskType]
ADD CONSTRAINT XPK_RiskType PRIMARY KEY CLUSTERED
([ID] ASC)
I would like the form to be sorted by Sort_order when presented to the user for data entry.
In order to do this I have set the Record Source = "SELECT RiskType.Sort_Order, RiskType.Risk_Type
FROM RiskType
ORDER BY RiskType.Sort_Order;"
However I find that when I do this, I cannot add any new entries to the form. I can only modify what already exists in the form.
Why is this happening?
CREATE Table dbo.RiskType(
ID INT IDENTITY NOT NULL,
Risk_Type varchar (50) NULL,
Sort_Order int Null)
ALTER TABLE [dbo].[RiskType]
ADD CONSTRAINT XPK_RiskType PRIMARY KEY CLUSTERED
([ID] ASC)
I would like the form to be sorted by Sort_order when presented to the user for data entry.
In order to do this I have set the Record Source = "SELECT RiskType.Sort_Order, RiskType.Risk_Type
FROM RiskType
ORDER BY RiskType.Sort_Order;"
However I find that when I do this, I cannot add any new entries to the form. I can only modify what already exists in the form.
Why is this happening?