Hi All
I am stuck and any help will be great.
I have an update query which works fine when I want to work out the percentage without changing the format of the field that it updates to percentage. But when I change the field in my table to format percentage it messes everything up.
I then thought it will use the same logic as Excel would. So I tried to divide the 1 number from the other and that would give me the percentage in the percentage column in Excel.
This is the sql I am using but for some reason I just get 0.00% all the time.
SQL:
UPDATE ytblRunDeadlineSummary SET ytblRunDeadlineSummary.[Run Deadlines Met Percentage] = [ytblRunDeadlineSummary]![Run Cumulative Target]/[ytblRunDeadlineSummary]![Run Deadlines missed];
Any help would be great ;p
Thanks
Mark
I am stuck and any help will be great.
I have an update query which works fine when I want to work out the percentage without changing the format of the field that it updates to percentage. But when I change the field in my table to format percentage it messes everything up.
I then thought it will use the same logic as Excel would. So I tried to divide the 1 number from the other and that would give me the percentage in the percentage column in Excel.
This is the sql I am using but for some reason I just get 0.00% all the time.
SQL:
UPDATE ytblRunDeadlineSummary SET ytblRunDeadlineSummary.[Run Deadlines Met Percentage] = [ytblRunDeadlineSummary]![Run Cumulative Target]/[ytblRunDeadlineSummary]![Run Deadlines missed];
Any help would be great ;p
Thanks
Mark