Hi
Is there a way to create table with a calculated type column through VBA.
Currently I am using the below code But I am getting, Syntax error in field Expression.
Any Help pls!!!
Is there a way to create table with a calculated type column through VBA.
Currently I am using the below code But I am getting, Syntax error in field Expression.
Code:
db.Execute "CREATE TABLE tblFields(FieldName TEXT (55), " _ & "FieldValue TEXT (55), STotal NUMBER, Goods NUMBER, Goods% " _ & "CALCULATED ([Goods]/[STotal]) );"
Any Help pls!!!
Comment