I wanted my database to have the ability to add fields together within my table. I read it wasnt possible in my version and it was best to use a query based on the table.
The name of my is: tblsavings
With the query in design view I have it setup like below. But everytime I save it displays:
Field 1: I_saving
Field 2: ac_saving (NUMERIC VALUES)
Field 3: std_cost_av_base (NUMERIC VALUES)
Field 4: std_cost_av_fig: [std_cost_av_base]/[no_days]*365
Field 5: total_saving:[I_saving] + [ac_saving] + [std_cost_av_fig]
Field 6: b_start_date (DATE VALUES)
Field 7: b_end_date (DATE VALUES)
Field 8: no_days: [b_end_date]-[b_start_date]
The results of the query will be included it in a form with other fields that I need to update. It has been saying that the recordset is not updateable too.
Can anyone help and understand what I am trying to achieve. I wish to ask for a detailed explanation as I am a beginner.
Thanks
The name of my is: tblsavings
With the query in design view I have it setup like below. But everytime I save it displays:
Code:
Syntax error in query expression 'tblsavings.[std_cost_av_fig:[std_cost_av_base]/[no_days]*365]
Field 2: ac_saving (NUMERIC VALUES)
Field 3: std_cost_av_base (NUMERIC VALUES)
Field 4: std_cost_av_fig: [std_cost_av_base]/[no_days]*365
Field 5: total_saving:[I_saving] + [ac_saving] + [std_cost_av_fig]
Field 6: b_start_date (DATE VALUES)
Field 7: b_end_date (DATE VALUES)
Field 8: no_days: [b_end_date]-[b_start_date]
The results of the query will be included it in a form with other fields that I need to update. It has been saying that the recordset is not updateable too.
Can anyone help and understand what I am trying to achieve. I wish to ask for a detailed explanation as I am a beginner.
Thanks