Match Formula in MS Access

Fredek

Board Regular
Joined
Mar 8, 2011
Messages
65
Hi guys,

I am working in Design view of a query. I have two tables below. I want to add a formula in query formula window to help calculate the new grade based on the 10% improvement. In Excel I could do it via Match formula, how can I do this in Access?

Table A:

Grade Upper Bound
115
225
331
444
546
680

<tbody>
</tbody>

Table B:
Score10% ImprovementGrade
1011New projected grade based on 10% improvement from table A
4044

<tbody>
</tbody>

Thank you!
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
I am not quite sure I undestand the relationship between the two tables. But if you simply want to create a calculated field that takes a value and add 10% to it, it would look somethng like this:
Code:
NewProjGrade: [Score] * 1.1
 
Upvote 0
Hi Joe, thank you for your reply!

I want to be able to use the new score (using the *1.1 or *1.2)to match it to the Table A to work out whether that score increase would result in grade increase.

For example if we start with a score of 40 and assume a 20% increase that would be 48 and would qualify for grade 5.
 
Last edited:
Upvote 0
Table A

Grade Lower Bound

10*
225
331
444
546
680

<tbody>
</tbody>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,044
Members
449,063
Latest member
ak94

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top