I am creating a view that work properly except that the field size for the item no is a varchar, 8000. The field should only be 50 characters. How do I make the ItemNo (varchar, 50)? When I link the table to Access it converts the field to a memo because of the size of the field.
Here is the case statement:
CASE WHEN InvoiceDetails.ItemNo = 'Lift Chairs' THEN RTrim(ItemSpecs.PropText) ELSE RTrim(InvoiceDetails.ItemNo) END AS ItemNo,
Thanks in advance.
Razor1
Here is the case statement:
CASE WHEN InvoiceDetails.ItemNo = 'Lift Chairs' THEN RTrim(ItemSpecs.PropText) ELSE RTrim(InvoiceDetails.ItemNo) END AS ItemNo,
Thanks in advance.
Razor1