- Posts: 1
- Thank you received: 0
Import Record Filtering
18 years 9 months ago #18
by rtaylor
Import Record Filtering was created by rtaylor
How can I place multiple criteria on the import record filtering? I cannot seem to figure out the proper syntax using the expression editor?
Please Log in or Create an account to join the conversation.
18 years 9 months ago #19
by mike8888
Replied by mike8888 on topic RE: Import Record Filtering
Under Expression edit box there is as small toolbar with buttons. If you move the mouse above you will see the hints.
You need to use
|| -> OR
&& -> AND
! -> NOT
Following example will load the records where RECORDTYPE field is equals to
1 or 56
([RECORDTYPE]==1) || ([RECORDTYPE]==56)
We will update documentation to make it more obvious for the user
You need to use
|| -> OR
&& -> AND
! -> NOT
Following example will load the records where RECORDTYPE field is equals to
1 or 56
([RECORDTYPE]==1) || ([RECORDTYPE]==56)
We will update documentation to make it more obvious for the user
Please Log in or Create an account to join the conversation.