I have the following variable in a formula...
Global StringVar DentalCredit4111;
DentalCredit4111 :=
If {deditems.dedcode} like "8760" then "$ 41.11" else
Global StringVar DentalCredit9961;
DentalCredit9961 :=
If {deditems.dedcode} like "8761" then "$ 99.61"
Group 2 is {deditems.dedcode}. Group 2 is split into two sections; A and B. Groups 2A and 2B suppress codes. Group 2B suppress all codes except "8760" and "8761". These 2 codes are what the formula are based on.
I want to recall (print on the form) the Dental Credit in Group 1. In Group 1 I want to either print "$ 41.11" or "$ 99.61" depending on {deditems.dedcode} in Group 2B
How do I recall (print on the form) the variable?
Thanks!!!!
Hillary
Hillary
Global StringVar DentalCredit4111;
DentalCredit4111 :=
If {deditems.dedcode} like "8760" then "$ 41.11" else
Global StringVar DentalCredit9961;
DentalCredit9961 :=
If {deditems.dedcode} like "8761" then "$ 99.61"
Group 2 is {deditems.dedcode}. Group 2 is split into two sections; A and B. Groups 2A and 2B suppress codes. Group 2B suppress all codes except "8760" and "8761". These 2 codes are what the formula are based on.
I want to recall (print on the form) the Dental Credit in Group 1. In Group 1 I want to either print "$ 41.11" or "$ 99.61" depending on {deditems.dedcode} in Group 2B
How do I recall (print on the form) the variable?
Thanks!!!!
Hillary
Hillary