i have to split adress like
raj,2d-raja road,delhi-10008. to
raj,
raja road,
delhi-10008.
i can do it with split function but its giving error msg
when i use it in formulae
error is remaining text doesnot appear to b part of formula
plz help me by giving example
raj,2d-raja road,delhi-10008. to
raj,
raja road,
delhi-10008.
i can do it with split function but its giving error msg
Code:
Dim x(3) As String x = Split ({std.addr}, ",") formula = x(2) If Isnull({std.a}) or ({std.b})= "" then {std.addr} else {std.prj}+", "+{std.addr}
error is remaining text doesnot appear to b part of formula
plz help me by giving example
Comment