Hi
I have a customer and they want to put the Benefit in Kind into a separate section on the payslip and also have a To Date value. Has anyone else been able to achieve this ? Or is this an impossible task.
Many thanks
Felicity
You're in luck, did it last week! Tick the box on the payment to print the balance like normal and then edit 2 of the expressions on the right
Description =
p_oCallingForm.paybal(1,1)
Value
p_oCallingForm.paybal(1,2)
I wrote this to find the BIK and print under the total, you will need to amend to find your BIK
Print below total..
Description
iif(seek(wname.wn_group+wn_ref+"A051","WTRAN"),"BUPA BIK","")
iif(seek(wname.wn_group+wn_ref+"A051","WTRAN"),wtran.wr_permval,"")
Omit from printing BIK - expressions above the Total
iif(alltrim(p_oCallingForm.payments(1,1))<>"BUPA BIK",p_oCallingForm.payments(1,1),"")
iif(alltrim(p_oCallingForm.payments(1,1))<>"BUPA BIK",p_oCallingForm.payments(1,4),"")
Regards
Rick
That's amazing. Thank you.