Is there an equivalent to @Begins in LotusScript? I want to check if a field begins with “02”.
Thanks in advance.
Patty
Is there an equivalent to @Begins in LotusScript? I want to check if a field begins with “02”.
Thanks in advance.
Patty
Subject: Equivalent to @Begins?
Just left(string,2)
If left(string,2) = “02” then
blah
End if
Subject: RE: Equivalent to @Begins?
Thank you!