Good Day ,
The Table :
1)
I want to calculate emp_salary and emp_total_salary based on emp_kpi(the value will be insert manually between certain ranges) , the emp_bonus will increment
if emp_kpi ranges between :-
0 <= 40 ; emp_bonus = 0.05
0 <= 69 ; emp_bonus = 0.08
0 <= 100 ; emp_bonus = 0.11
2)
the formula to calculate :-
emp_salary = emp_basic_pay + emp_allowance + emp_travel_cost
emp_total_bonus = emp_salary * emp_bonus
emp_total_salary = emp_salary + emp_total_bonus
3)
build expression here ?
4)
I've been trying googling and stuff since yesterday and unable to do this since this is my first time using microsoft access. I use expression builder with Iif to calculate but still got expression error
Thank you