H Hazel Registered User. Local time Today, 10:01 Joined Apr 1, 2005 Messages 19 Apr 1, 2005 #1 I have a field named Admin Charge which is the sub total multiplied by 12.5% (sub total*0.125) now if this is equal to or over £50.00 i want it to equal no more than £ 50.00 going nuts on how to calculate it (Access 2002) someone please help
I have a field named Admin Charge which is the sub total multiplied by 12.5% (sub total*0.125) now if this is equal to or over £50.00 i want it to equal no more than £ 50.00 going nuts on how to calculate it (Access 2002) someone please help
FoFa Registered User. Local time Today, 12:01 Joined Jan 29, 2003 Messages 3,672 Apr 1, 2005 #2 AdminChrg: IIF([sub total]*0.125)>50.0,50.0,[sub total]*0.125)
H Hazel Registered User. Local time Today, 10:01 Joined Apr 1, 2005 Messages 19 Apr 1, 2005 #3 Thank a Million Thank a million was going nuts take care