Hi, I am currently having a few problems using Queries in MS Access 2007. I am currently trying to make the query multiply to values, although only if "value 1" is above a value of 100.
For example:
I have managed to get the two field to multiply with each other using:
Although I need to instruct the query to mulitply the values only if "Value1" is above 100. Would I use an "if" statement to implement this?
Any help would be greatly appreciated.
Many Thanks.
For example:
Code:
Value 1 Value 2 Result
16 23 Do not mulitply
113 7 Mulitply.
I have managed to get the two field to multiply with each other using:
Code:
Result: [Value1]*[Value2]
Although I need to instruct the query to mulitply the values only if "Value1" is above 100. Would I use an "if" statement to implement this?
Any help would be greatly appreciated.
Many Thanks.