I had only just finished working out the code when i refreshed the page and saw that Alan had already answered you, but I didn't do that work for nothing!
What I came up with was using ElseIf statements in a module which is then called up in the design mode of the query which is then used to create the field for the summation and the multiplied answer afterwards. therefore, this is the code that I have come up with,
Code:
Dim multiAnswer As Integer
If (summation < 1000) Then
multiAnswer = summation * 0.05
ElseIf ((summation > 1000) And (summation < 2000)) Then
multiAnswer = summation * 0.07
Else
multiAnswer = summation * 0.1
End If
multAnswer = multiAnswer