Forum Discussion
KallieGoodwin
8 years agoQrew Trainee
Yes, I did figure that out.
My problem now is that I need to remove those "-". Any ideas?
My problem now is that I need to remove those "-". Any ideas?
- MCFNeil8 years agoQrew CaptainI haven't tested this, but you will need to use a combination of
Right, NotRight and Left formulas to pull out the parts.
Then combine back together.
var text Left=Left([Tax ID], "-");
var text Right=Right([Tax ID], "-");
var text Middle=Left(NotRight([Tax ID], "-"), "-");
$Left & $Middle & $Right
Does that logic make sense?