I have a table with the fields month which contains every month of the year and a field called personal_month which contains numeric values.
I need to write a query for my form that gives me the sum of all the personal_month records from the kms_table where month=January
example:
=Sum(kms_table.Personal_Month FROM kms_table WHERE(((kms_table.Month)='January')))
This query doesn't work
I need to write a query for my form that gives me the sum of all the personal_month records from the kms_table where month=January
example:
=Sum(kms_table.Personal_Month FROM kms_table WHERE(((kms_table.Month)='January')))
This query doesn't work