Hi,Can anybody tell me what does the below view selection mean??
SELECT (Form = “Control”:“Movementstakeholderlookup”:“Do Not Mail”)
thanks,
Amit
Hi,Can anybody tell me what does the below view selection mean??
SELECT (Form = “Control”:“Movementstakeholderlookup”:“Do Not Mail”)
thanks,
Amit
Subject: RE: Selection Formula
Shalom Amit,
SELECT (Form = “Control”:“Movementstakeholderlookup”:“Do Not Mail”)
is the same as
SELECT Form = “Control” | Form = “Movementstakeholderlookup” | Form = “Do Not Mail”
the colon is a list concatenator… by using the list concatenator, you distribute “FORM =”…
Marc Resnick
Hi,
Can anybody tell me what does the below view selection mean??
SELECT (Form = “Control”:“Movementstakeholderlookup”:“Do Not Mail”)
thanks,
Amit
Subject: Re: Selection Formula
Thanks a lot for the info Marc.