SSN Formula
US Customers:
=If Not(IsNull([SSN])) Then Left([SSN];3)+"-"+Substr([SSN];4;2)+"-"+Right([SSN];4)
CA Customers:
=If Not(IsNull([SIN])) Then Left([SIN];3)+"-"+Substr([SIN];4;3)+"-"+Right([SIN];3)
BO 4.3 Platform
=If Not(IsNull([SSN])) Then Left([SSN];3)+"-"+Substr([SSN];4;2)+"-"+Right([SSN];4)
=If Not(IsNull([SIN])) Then Left([SIN];3)+"-"+Substr([SIN];4;3)+"-"+Right([SIN];3)