R
RNUSZ@OKDPS
I have a need to check a field in the current record that is sent to a
specific FORM-LETTER report page. If the field LIC_STAT_CDE = S then I need
to print this special paragraph in a Text box on my form-letter
----------------------------------------------------------------------------------------------------------
=" It is hereby ordered, based upon evidence received at the above
hearing, that the license and registration(s) of " & [LIC_FIRST_NME]+" " &
[LIC_MIDDLE_NME]+" " & [LIC_LAST_NME] & IIf(IsNull([LIC_SUBT_TXT]),""," " &
[LIC_SUBT_TXT]) & ", is suspended immediately for operating or permitting the
operation of a motor vehicle without insurance or security pursuant to 47
o.s. §7-601. Said suspension shall continue until proof of curent insurance
in your name is filed with this Department along with a $100.00 reinstatement
fee in the form of a cashier's check or money order made payable to the
Department of Public Safety.
----------------------------------------------------------------------------------------------------------
if this same field LIC_STAT_CDE has a value of N. then print this in that
same paragraph position
----------------------------------------------------------------------------------------------------------
=" It is further ordered, based upon evidence received at the above
hearing, that the license and registration(s) of " & [LIC_FIRST_NME]+" " &
[LIC_MIDDLE_NME]+" " & [LIC_LAST_NME] & IIf(IsNull([LIC_SUBT_TXT]),""," " &
[LIC_SUBT_TXT]) & ", shall remain suspended unless proof of current insurance
in your name is filed with this Department along with a $100.000 reinstatment
fee in the form of a cashier's check or money order made payable to the
Department of Public Safety."
is there some way to code the conditional on output lik
--------------------------------------------------------------------------------------------------------
=(If LIC_STAT_CDE = S, then
=" It is hereby ordered, based upon evidence received at the above
hearing, that the license and registration(s) of " & [LIC_FIRST_NME]+" " &
[LIC_MIDDLE_NME]+" " & [LIC_LAST_NME] & IIf(IsNull([LIC_SUBT_TXT]),""," " &
[LIC_SUBT_TXT]) & ", is suspended immediately for operating or permitting the
operation of a motor vehicle without insurance or security pursuant to 47
o.s. §7-601. Said suspension shall continue until proof of curent insurance
in your name is filed with this Department along with a $100.00 reinstatement
fee in the form of a cashier's check or money order made payable to the
Department of Public Safety. " else =" It is further ordered, based upon
evidence received at the above hearing, that the license and registration(s)
of " & [LIC_FIRST_NME]+" " & [LIC_MIDDLE_NME]+" " & [LIC_LAST_NME] &
IIf(IsNull([LIC_SUBT_TXT]),""," " & [LIC_SUBT_TXT]) & ", shall remain
suspended unless proof of current insurance in your name is filed with this
Department along with a $100.000 reinstatment fee in the form of a cashier's
check or money order made payable to the Department of Public Safety."
--------------------------------------------------------------------------------------------------------
or do I need to create two separate form letters, one for each condition of
LIC_STAT_CDE?
Thanks in advance...
specific FORM-LETTER report page. If the field LIC_STAT_CDE = S then I need
to print this special paragraph in a Text box on my form-letter
----------------------------------------------------------------------------------------------------------
=" It is hereby ordered, based upon evidence received at the above
hearing, that the license and registration(s) of " & [LIC_FIRST_NME]+" " &
[LIC_MIDDLE_NME]+" " & [LIC_LAST_NME] & IIf(IsNull([LIC_SUBT_TXT]),""," " &
[LIC_SUBT_TXT]) & ", is suspended immediately for operating or permitting the
operation of a motor vehicle without insurance or security pursuant to 47
o.s. §7-601. Said suspension shall continue until proof of curent insurance
in your name is filed with this Department along with a $100.00 reinstatement
fee in the form of a cashier's check or money order made payable to the
Department of Public Safety.
----------------------------------------------------------------------------------------------------------
if this same field LIC_STAT_CDE has a value of N. then print this in that
same paragraph position
----------------------------------------------------------------------------------------------------------
=" It is further ordered, based upon evidence received at the above
hearing, that the license and registration(s) of " & [LIC_FIRST_NME]+" " &
[LIC_MIDDLE_NME]+" " & [LIC_LAST_NME] & IIf(IsNull([LIC_SUBT_TXT]),""," " &
[LIC_SUBT_TXT]) & ", shall remain suspended unless proof of current insurance
in your name is filed with this Department along with a $100.000 reinstatment
fee in the form of a cashier's check or money order made payable to the
Department of Public Safety."
is there some way to code the conditional on output lik
--------------------------------------------------------------------------------------------------------
=(If LIC_STAT_CDE = S, then
=" It is hereby ordered, based upon evidence received at the above
hearing, that the license and registration(s) of " & [LIC_FIRST_NME]+" " &
[LIC_MIDDLE_NME]+" " & [LIC_LAST_NME] & IIf(IsNull([LIC_SUBT_TXT]),""," " &
[LIC_SUBT_TXT]) & ", is suspended immediately for operating or permitting the
operation of a motor vehicle without insurance or security pursuant to 47
o.s. §7-601. Said suspension shall continue until proof of curent insurance
in your name is filed with this Department along with a $100.00 reinstatement
fee in the form of a cashier's check or money order made payable to the
Department of Public Safety. " else =" It is further ordered, based upon
evidence received at the above hearing, that the license and registration(s)
of " & [LIC_FIRST_NME]+" " & [LIC_MIDDLE_NME]+" " & [LIC_LAST_NME] &
IIf(IsNull([LIC_SUBT_TXT]),""," " & [LIC_SUBT_TXT]) & ", shall remain
suspended unless proof of current insurance in your name is filed with this
Department along with a $100.000 reinstatment fee in the form of a cashier's
check or money order made payable to the Department of Public Safety."
--------------------------------------------------------------------------------------------------------
or do I need to create two separate form letters, one for each condition of
LIC_STAT_CDE?
Thanks in advance...