Hi
I need a form to calculate the fines as follows:
TXTBOX1 ---> Specified date to pay taxes
TXTBOX2 ---> Amount of tax
TXTBOX3 ---> Date on which the tax is paid
TXTBOX4 ---> The amount paid for taxes
TXTBOX5 ---> Calculation Date
Txt Box6 ---> Amount of fines
--------------------------------------------------------------
IF (TXTBOX1>=TXTBOX3) And (TXTBOX4=TXTBOX2) --> Txt Box6= 0
IF (TXTBOX1>=TXTBOX3) And (TXTBOX4<TXTBOX2) --> Txt Box6= (TXTBOX2-TXTBOX4)*0.02* distance between two dates TXTBOX1 and TXTBOX5 by month
IF (TXTBOX1<TXTBOX3) And (TXTBOX4=TXTBOX2) --> Txt Box6= (TXTBOX2*0.02* distance between two dates TXTBOX1 and TXTBOX3 by month
IF (TXTBOX1<TXTBOX3) And (TXTBOX4<TXTBOX2) --> Txt Box6= (TXTBOX2*0.02* distance between two dates TXTBOX1 and TXTBOX3 by month
+ (TXTBOX2-TXTBOX4)*0.02* distance between two dates TXTBOX3 and TXTBOX5 by month